Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
glichtner committed Jan 12, 2021
1 parent 45ddcd3 commit c1655c9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Changelog
#########

0.2.4
0.2.5
=====

fixed
Expand Down
36 changes: 18 additions & 18 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,6 @@ image: Visual Studio 2019
stack: python 3.6
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: macos
TOXENV: py36
- APPVEYOR_BUILD_WORKER_IMAGE: macos-mojave
TOXENV: py36
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
TOXENV: py36
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu1604
TOXENV: py36
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004
TOXENV: py36
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
PYTHON: "C:/Python27-x64"
TOXENV: py27
Expand All @@ -39,6 +29,16 @@ environment:
TOXENV: py38
- PYTHON: "C:/Python39"
TOXENV: py39
- APPVEYOR_BUILD_WORKER_IMAGE: macos
TOXENV: py36
- APPVEYOR_BUILD_WORKER_IMAGE: macos-mojave
TOXENV: py36
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
TOXENV: py36
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu1604
TOXENV: py36
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004
TOXENV: py36

install:
- sh: |
Expand Down Expand Up @@ -69,14 +69,6 @@ artifacts:
- path: "dist/*"

after_deploy:
- cmd: |
if($env:APPVEYOR_REPO_TAG -eq 'true') {
Write-Output ("Deploying " + $env:APPVEYOR_REPO_TAG_NAME + " to PyPI...")
&"${Env:PYTHON}/python.exe" -m pip install twine
&"${Env:PYTHON}/python.exe" -m twine upload -u ${Env:PYPI_USER} -p ${Env:PYPI_PASS} --skip-existing dist/*.whl
} else {
Write-Output "No tag for deployment"
}
- ps: |
if ($env:CI_WINDOWS -eq 'false') {
if($env:APPVEYOR_REPO_TAG -eq 'true') {
Expand All @@ -86,6 +78,14 @@ after_deploy:
} else {
Write-Output "No tag for deployment"
}
} else {
if($env:APPVEYOR_REPO_TAG -eq 'true') {
Write-Output ("Deploying " + $env:APPVEYOR_REPO_TAG_NAME + " to PyPI...")
&"${Env:PYTHON}/python.exe" -m pip install twine
&"${Env:PYTHON}/python.exe" -m twine upload -u ${Env:PYPI_USER} -p ${Env:PYPI_PASS} --skip-existing dist/*.whl
} else {
Write-Output "No tag for deployment"
}
}
deploy:
Expand Down
2 changes: 1 addition & 1 deletion pystackreg/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.4"
__version__ = "0.2.5"

0 comments on commit c1655c9

Please sign in to comment.