diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 11ec3ed..dc0a1db 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -592,8 +592,8 @@ jobs: # TWINE_USERNAME: ${{ vars.TWINE_USERNAME }} # TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} # PYPI_SERVER: ${{ vars.PYPI_SERVER }} - run: tox -vv -s false -e deploy - # run: tox -vv -s false -e deploy -- upload --non-interactive --skip-existing + # run: tox -vv -s false -e deploy + run: tox -vv -s false -e deploy -- upload --non-interactive --skip-existing # runs: twine upload --non-interactive --repository testpypi --skip-existing ./dist/PY_PACKAGE-:Version.tar.gz --verbose diff --git a/pyproject.toml b/pyproject.toml index 0db53e4..1297be8 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "artificial-artwork" -version = "1.0.1-rc" +version = "1.0.2" description = "Create artificial artwork by transfering the appearance of one image (eg a famous painting) to another user-supplied image (eg your favourite photograph)." authors = ["Konstantinos Lampridis "] maintainers = ["Konstantinos Lampridis "] diff --git a/src/artificial_artwork/__version__.py b/src/artificial_artwork/__version__.py index 5482331..7863915 100755 --- a/src/artificial_artwork/__version__.py +++ b/src/artificial_artwork/__version__.py @@ -1 +1 @@ -__version__ = "1.0.1-rc" +__version__ = "1.0.2" diff --git a/tox.ini b/tox.ini index fde254c..1aa148d 100644 --- a/tox.ini +++ b/tox.ini @@ -321,9 +321,9 @@ commands_pre = ; twine check dist/artificial[\-_]artwork-{env:PACKAGE_DIST_VERSION:PLEASE_INDICATE_THE_SEM_VER_FOR_RELEASE}* commands = # TAR GZ - python -m twine {posargs:upload --non-interactive --repository testpypi --skip-existing} {toxinidir}{/}dist/{env:PY_PACKAGE}-{env:PACKAGE_DIST_VERSION:PLEASE_INDICATE_THE_SEM_VER_FOR_RELEASE}.tar.gz --verbose + python -m twine {posargs:upload --non-interactive} --repository {env:PYPI_SERVER:testpypi --skip-existing} {toxinidir}{/}dist/{env:PY_PACKAGE}-{env:PACKAGE_DIST_VERSION:PLEASE_INDICATE_THE_SEM_VER_FOR_RELEASE}.tar.gz --verbose + ; python -m twine {posargs:upload --non-interactive --repository testpypi --skip-existing} {toxinidir}{/}dist/{env:PY_PACKAGE}-{env:PACKAGE_DIST_VERSION:PLEASE_INDICATE_THE_SEM_VER_FOR_RELEASE}.tar.gz --verbose - ; python -m twine {posargs:upload --non-interactive} --repository {env:PYPI_SERVER:testpypi --skip-existing} {toxinidir}{/}dist/{env:PY_PACKAGE}-{env:PACKAGE_DIST_VERSION:PLEASE_INDICATE_THE_SEM_VER_FOR_RELEASE}.tar.gz --verbose # WHEEL ; python -m twine {posargs:upload --non-interactive} --repository {env:PYPI_SERVER:testpypi --skip-existing} dist/artificial[\-_]artwork-{env:PACKAGE_DIST_VERSION:PLEASE_INDICATE_THE_SEM_VER_FOR_RELEASE}* --verbose ; commands_post =