Skip to content

Commit fe76bc9

Browse files
authored
Merge pull request #253 from ynput/bugfix/pep-625-fix
Chore: Fix PEP 625 for PyPi
2 parents 86a991c + 2e35b80 commit fe76bc9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/python-publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# separate terms of service, privacy policy, and support
77
# documentation.
88

9-
name: Upload Python Package
9+
name: ⬆️ Upload Python Package
1010

1111
on:
1212
release:
@@ -17,8 +17,10 @@ permissions:
1717

1818
jobs:
1919
deploy:
20-
2120
runs-on: ubuntu-latest
21+
environment:
22+
name: pypi
23+
url: https://pypi.org/p/ayon-python-api
2224

2325
steps:
2426
- uses: actions/checkout@v3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
exec(open(VERSION_PATH).read(), _version_content)
1111

1212
setup(
13-
name="ayon-python-api",
13+
name="ayon_api",
1414
version=_version_content["__version__"],
1515
py_modules=["ayon_api"],
1616
packages=["ayon_api"],

0 commit comments

Comments
 (0)