Skip to content

Commit

Permalink
version fix
Browse files Browse the repository at this point in the history
Signed-off-by: Rushil <[email protected]>
  • Loading branch information
Rushil committed Dec 8, 2022
1 parent c5e99f5 commit 47f12bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ install:
- sudo apt-get update
- sudo apt-get install pandoc
- pip install pypandoc
- echo -e "machine github.ibm.com\n login $GITHUB_OAUTH_TOKEN" > ~/.netrc
- pip install setuptools=="60.8.2"

script:
Expand All @@ -42,6 +41,7 @@ deploy:
python: '3.10'
branch: master
- provider: pypi
setuptools_version: "60.8.2"
user: __token__
password: $PYPI_TOKEN
repository: https://upload.pypi.org/legacy
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
with open("README.md", "r") as rfh:
long_description = rfh.read()

__version__ = '2.2.0'

setuptools.setup(
name = "keyprotect",
version = "2.2.0",
version = __version__,
description = "A Pythonic client for IBM Key Protect",
long_description = long_description,
long_description_content_type = "text/markdown",
Expand Down

0 comments on commit 47f12bd

Please sign in to comment.