Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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