8000 add preliminary support for PyPI uploads for windows wheels · Python3pkg/opencv-python@5a0a8aa · GitHub
[go: up one dir, main page]

Skip to content

Commit 5a0a8aa

Browse files
committed
add preliminary support for PyPI uploads for windows wheels
1 parent 085522b commit 5a0a8aa

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

appveyor.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
environment:
2+
USER:
3+
secure: fXgF9uyy6sT0JoVOR7BoqA==
4+
5+
PASS:
6+
secure: DJMOk9HEW0qeOC0a2klPZpUMlPvq6vp6Rzv1++SpaYo=
7+
18
install:
29
- cmd: >-
310
@@ -99,3 +106,7 @@ test_script:
99106
artifacts:
100107
- path: dist\*.whl
101108
name: wheels
109+
110+
deploy_script:
111+
- cmd: IF "%APPVEYOR_REPO_TAG%" == "true" ( twine -u %USER% -p %PASS% -r pypitest dist/*" ) else ( echo "Tag not set, deployment skipped." )
112+

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
numpy
22
wheel
3+
twine

0 commit comments

Comments
 (0)
0