Skip to content

Commit

Permalink
fix appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
arm61 committed Sep 19, 2018
1 parent ab681af commit 28a559d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
password:
PYPI_PASSWORD:
secure: 65W0nlxk4YHmU5dqtk5DXg==
matrix:

Expand All @@ -20,7 +20,7 @@ environment:
install:
# We need wheel installed to build wheels
- "SET PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- "%PYTHON%\\python.exe -m pip install wheel"
- "%PYTHON%\\python.exe -m pip install wheel twine"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
- "set PATH=%PATH%;C:\"%PYTHON%\\Scripts"

Expand All @@ -44,7 +44,8 @@ after_test:
- "echo [pypi] > %USERPROFILE%\\.pypirc"
- "echo username: user >> %USERPROFILE%\\.pypirc"
- "echo password: %password% >> %USERPROFILE%\\.pypirc"
- "%PYTHON%\\python.exe setup.py bdist_wheel upload"
- "%PYTHON%\\python.exe setup.py bdist_wheel"
- "twine upload --skip-existing dist/*.whl"

artifacts:
# bdist_wheel puts your built wheel in the dist directory
Expand Down

0 comments on commit 28a559d

Please sign in to comment.