1
0
mirror of https://github.com/edgewall/trac.git synced 2026-02-05 09:46:44 +01:00

1.6.1dev: adapt to distribution name normalization for wheel and sdist packages since setuptools 75.3.1 (closes #13881)

git-svn-id: http://trac.edgewall.org/intertrac/log:/branches/1.6-stable@17900 af82e41b-90c4-0310-8c96-b1721e28e2e2
This commit is contained in:
jomae
2025-04-27 02:57:31 +00:00
parent 689517fab1
commit aa0d7e4205
4 changed files with 6 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ if [ -n "$EDGEWALL_KEY_BASE64" ]; then
echo "$EDGEWALL_HOST_KEY" >"$known_hosts"
chmod 0600 "$keyfile"
scp -i "$keyfile" -o "UserKnownHostsFile $known_hosts" \
dist/Trac-* github@edgewall.org:/var/ftp/pub/trac/incoming
dist/trac-* github@edgewall.org:/var/ftp/pub/trac/incoming
else
echo "::warning:: Skipped uploading package files to edgewall.org" 1>&2
fi

View File

@@ -439,7 +439,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: release
path: dist/Trac-*
path: dist/trac-*
if-no-files-found: ignore
- name: Upload release packages to edgewall.org

View File

@@ -712,11 +712,11 @@ sdist:
sdist+wheel = $(sdist_gztar) $(bdist_wheel)
sdist_gztar = dist/Trac-$(version).tar.gz
bdist_wheel = dist/Trac-$(version)-py3-none-any.whl
sdist_gztar = dist/trac-$(version).tar.gz
bdist_wheel = dist/trac-$(version)-py3-none-any.whl
packages = $(wildcard $(sdist+wheel)
packages = $(wildcard $(sdist+wheel))
checksum:
ifeq "$(version)" ""

View File

@@ -1,5 +1,5 @@
# Packages needed to create a release.
setuptools
setuptools>=75.3.1
wheel
jinja2
babel