Skip to content

Commit

Permalink
fix import issue from pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
chapimenge3 committed May 4, 2024
1 parent 5bd105f commit 85f1d54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deployment.yml
Expand Up @@ -31,7 +31,9 @@ jobs:
python -m pip install build
python -m pip install wheel twine setuptools
- name: Build a binary wheel and a source tarball
run: python -m build
run: |
rm -rf dist/
python -m build
- name: Publish distribution 📦 to PyPI
run: python -m twine upload dist/* --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,7 +4,7 @@
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()

version_number = os.environ.get('CHAPA_VERSION', '0.1.0')
version_number = os.environ.get('CHAPA_VERSION', '0.1.2')

setuptools.setup(
name='chapa',
Expand Down

0 comments on commit 85f1d54

Please sign in to comment.