Skip to content

Commit 9a391a2

Browse files
author
jomae
committed
1.7.1dev: merge [17900] from 1.6-stable (fix for #13881)
git-svn-id: http://trac.edgewall.org/intertrac/log:/trunk@17901 af82e41b-90c4-0310-8c96-b1721e28e2e2
2 parents 35a2a7e + aa0d7e4 commit 9a391a2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/release-upload.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [ -n "$EDGEWALL_KEY_BASE64" ]; then
1010
echo "$EDGEWALL_HOST_KEY" >"$known_hosts"
1111
chmod 0600 "$keyfile"
1212
scp -i "$keyfile" -o "UserKnownHostsFile $known_hosts" \
13-
dist/Trac-* [email protected]:/var/ftp/pub/trac/incoming
13+
dist/trac-* [email protected]:/var/ftp/pub/trac/incoming
1414
else
1515
echo "::warning:: Skipped uploading package files to edgewall.org" 1>&2
1616
fi

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ jobs:
439439
uses: actions/upload-artifact@v4
440440
with:
441441
name: release
442-
path: dist/Trac-*
442+
path: dist/trac-*
443443
if-no-files-found: ignore
444444

445445
- name: Upload release packages to edgewall.org

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -712,11 +712,11 @@ sdist:
712712

713713
sdist+wheel = $(sdist_gztar) $(bdist_wheel)
714714

715-
sdist_gztar = dist/Trac-$(version).tar.gz
716-
bdist_wheel = dist/Trac-$(version)-py3-none-any.whl
715+
sdist_gztar = dist/trac-$(version).tar.gz
716+
bdist_wheel = dist/trac-$(version)-py3-none-any.whl
717717

718718

719-
packages = $(wildcard $(sdist+wheel)
719+
packages = $(wildcard $(sdist+wheel))
720720

721721
checksum:
722722
ifeq "$(version)" ""

requirements-release.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Packages needed to create a release.
2-
setuptools
2+
setuptools>=75.3.1
33
wheel
44
jinja2
55
babel

0 commit comments

Comments
 (0)