Skip to content

Commit

Permalink
Merge pull request #26 from bakermoran/fix-release-issue
Browse files Browse the repository at this point in the history
fix the release issue
  • Loading branch information
bakermoran authored Jun 23, 2020
2 parents f6d7ea1 + 99eb92d commit e4f9000
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_API_KEY }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload --skip-existing dist/*
2 changes: 1 addition & 1 deletion bin/build_dist_pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ echo 'MAKE SURE setup.py FILE IS UPDATED WITH NEWEST VERSION AND A RELEASE IS CR
sleep 5

python3 setup.py sdist bdist_wheel
twine upload dist/*
twine upload --skip-existing dist/*
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='BayesABTest',
version='1.0.4',
version='1.0.6',
author='Baker Moran',
author_email='[email protected]',
license='MIT',
Expand All @@ -18,7 +18,7 @@
long_description_content_type='text/markdown',
keywords=['AB Test', 'Bayes', 'Bayesian Statistics'],
url='https://github.com/bakermoran/BayesABTest',
download_url='https://github.com/bakermoran/BayesABTest/archive/v1.0.4-alpha.tar.gz',
download_url='https://github.com/bakermoran/BayesABTest/archive/v1.0.6-alpha.tar.gz',
packages=['BayesABTest'],
include_package_data=True,
python_requires='>=3.6',
Expand Down

0 comments on commit e4f9000

Please sign in to comment.