Skip to content

Commit 5fa1b73

Browse files
committed
ci(release): Upgrade all dependencies used for release
1 parent df5054d commit 5fa1b73

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: |
5656
nextRelease="`npx semantic-release@^23.1.1 --dryRun | grep -oP 'Published release \K.*? ' || true`"
5757
npx semantic-release@^23.1.1
58-
echo "::set-output name=tag::$nextRelease"
58+
echo "tag=$nextRelease" >> $GITHUB_OUTPUT
5959
env:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6161
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}

deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

33
echo "Building distribution"
4-
python setup.py sdist bdist_wheel
4+
python -m build
55
echo "Pushing new version to PyPi"
66
twine upload dist/* -u $PYPI_USERNAME -p $PYPI_PASSWORD

dev-requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pytest==8.3.2
2-
twine==5.1.1
3-
wheel==0.44.0
4-
setuptools==75.1.0
5-
importlib-metadata==8.5.0
2+
twine==6.1.0
3+
wheel==0.45.1
4+
setuptools==80.9.0
5+
build==1.3.0

setup.cfg

Lines changed: 0 additions & 5 deletions
This file was deleted.

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,14 @@
2020
install_requires=requirements,
2121
include_package_data=True,
2222
classifiers=[
23-
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.7",
24+
"Programming Language :: Python :: 3.8",
25+
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
27+
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
2529
"Programming Language :: Python :: Implementation :: CPython",
2630
"Operating System :: OS Independent"
2731
],
32+
license="MIT"
2833
)

0 commit comments

Comments
 (0)