Skip to content

Commit

Permalink
new auth for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
AxelGard committed Jun 9, 2024
1 parent 6b47877 commit e02706c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD_NEW }}
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME_API }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD_API }}
run: |
python setup.py sdist bdist_wheel
twine upload --skip-existing dist/*
twine upload --skip-existing --verbose dist/*
2 changes: 1 addition & 1 deletion inkpot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from . import config
from . import file

__version__ = "2.2.4"
__version__ = "2.2.5"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='inkpot',
version='2.2.4',
version='2.2.5',
description='a small simple library for generating documentation from docstrings',
url='https://github.com/AxelGard/inkpot',
author='Axel Gard',
Expand Down

0 comments on commit e02706c

Please sign in to comment.