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:
2
.github/release-upload.sh
vendored
2
.github/release-upload.sh
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -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
|
||||
|
||||
6
Makefile
6
Makefile
@@ -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)" ""
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Packages needed to create a release.
|
||||
setuptools
|
||||
setuptools>=75.3.1
|
||||
wheel
|
||||
jinja2
|
||||
babel
|
||||
|
||||
Reference in New Issue
Block a user