From c1655c999bc6cb4ec9659ade5e196d7415f1dec9 Mon Sep 17 00:00:00 2001 From: Gregor Lichtner Date: Wed, 13 Jan 2021 00:38:24 +0100 Subject: [PATCH] version update --- CHANGELOG.rst | 2 +- appveyor.yml | 36 ++++++++++++++++++------------------ pystackreg/version.py | 2 +- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bb5cfbc..91110b1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ Changelog ######### -0.2.4 +0.2.5 ===== fixed diff --git a/appveyor.yml b/appveyor.yml index 9a1b996..5ae79e8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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 @@ -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: | @@ -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') { @@ -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: diff --git a/pystackreg/version.py b/pystackreg/version.py index 788da1f..fe404ae 100644 --- a/pystackreg/version.py +++ b/pystackreg/version.py @@ -1 +1 @@ -__version__ = "0.2.4" +__version__ = "0.2.5"