From 6dcc927e4ff4e7ef4d9c54d27b0352849dadd1bb Mon Sep 17 00:00:00 2001 From: Ludwig Schubert Date: Fri, 19 Mar 2021 15:48:33 +0000 Subject: [PATCH] v0.3.10: Use Github Actions for publishing Releases --- .github/workflows/python-publish.yml | 4 ++-- lucid/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index debbca8a..17f7aafe 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -20,8 +20,8 @@ jobs: pip install setuptools wheel twine - name: Build and publish env: - TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} - TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} run: | python setup.py sdist bdist_wheel twine upload dist/* diff --git a/lucid/__init__.py b/lucid/__init__.py index d015f309..28423644 100644 --- a/lucid/__init__.py +++ b/lucid/__init__.py @@ -35,4 +35,4 @@ seed = 0 # Set the lucid version - setup.py imports this value! -__version__ = "0.3.9" +__version__ = "0.3.10"