Skip to content

Commit 7db2931

Browse files
authored
SWI-4157 Update PyPi Auth (#176)
* SWI-4157 Update PyPi Auth Method * Update beta release pypi keys
1 parent ef2517e commit 7db2931

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
pip install twine
6565
pip install wheel
6666
python setup.py sdist bdist_wheel
67-
twine upload dist/* -u $PYPI_USERNAME -p $PYPI_PASSWORD
67+
twine upload dist/* -u __token__ -p $PYPI_API_KEY
6868
env:
6969
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
7070
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
@@ -132,7 +132,7 @@ jobs:
132132
pip install twine
133133
pip install wheel
134134
python setup.py sdist bdist_wheel
135-
twine upload dist/* -u $PYPI_USERNAME -p $PYPI_PASSWORD
135+
twine upload dist/* -u __token__ -p $PYPI_API_KEY
136136
env:
137137
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
138138
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bandwidth"
33
version = "15.0.0"
44
description = "Bandwidth"
55
authors = ["Bandwidth <[email protected]>"]
6-
license = "NoLicense"
6+
license = "MIT"
77
readme = "README.md"
88
repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
99
keywords = ["OpenAPI", "OpenAPI-Generator", "Bandwidth"]

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,5 @@
4545
install_requires=REQUIRES,
4646
packages=find_packages(exclude=["test", "tests"]),
4747
include_package_data=True,
48-
long_description="""\
49-
Bandwidth&#39;s Communication APIs # noqa: E501
50-
"""
48+
long_description=long_description
5149
)

0 commit comments

Comments
 (0)