Skip to content

Commit 0f67af1

Browse files
committed
ci(release): Upgrade all dependencies used for release
1 parent f4a0413 commit 0f67af1

File tree

5 files changed

+6
-12
lines changed

5 files changed

+6
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
nextRelease="`npx semantic-release@^23.1.1 --dryRun | grep -oP 'Published release \K.*? ' || true`"
3333
npx semantic-release@^23.1.1
34-
echo "::set-output name=tag::$nextRelease"
34+
echo "tag=$nextRelease" >> $GITHUB_OUTPUT
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3737
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: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
classifiers=[
2020
"Programming Language :: Python :: 3.7",
2121
"Programming Language :: Python :: Implementation :: IronPython",
22-
"License :: OSI Approved :: GNU Affero General Public License v3",
2322
"Operating System :: OS Independent"
2423
],
2524
license="AGPL-3.0"

0 commit comments

Comments
 (0)