File tree Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 48
48
49
49
- CI(GHActions): Run tests under Python 3.13.
50
50
51
+ Build/release:
52
+
53
+ - Rename sdist to lowercase; different build tools produce different case.
54
+ This is important because stupid PyPI doesn't ignore sdists
55
+ in different cases but also doesn't allow uploading.
56
+ So we use single case, all lower. Also see PEP 625.
51
57
52
58
53
59
What is CheetahTemplate3
Original file line number Diff line number Diff line change 38
38
- CI(GHActions): Switch to ``setup-miniconda ``.
39
39
40
40
- CI(GHActions): Run tests under Python 3.13.
41
+
42
+ Build/release:
43
+
44
+ - Rename sdist to lowercase; different build tools produce different case.
45
+ This is important because stupid PyPI doesn't ignore sdists
46
+ in different cases but also doesn't allow uploading.
47
+ So we use single case, all lower. Also see PEP 625.
Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ v=$(echo "$py" | sed 's/\.//')
13
13
14
14
pip install -U pip setuptools readme-renderer twine wheel
15
15
python setup.py sdist
16
- if [ -f dist/ct3 -* .tar.gz ]; then
17
- # Rename sdist to uppercase ; different build tools produce different case.
16
+ if [ -f dist/CT3 -* .tar.gz ]; then
17
+ # Rename sdist to lowercase ; different build tools produce different case.
18
18
# This is important because stupid PyPI doesn't ignore sdists
19
19
# in different cases but also doesn't allow uploading.
20
- # So we use single case, all upper .
20
+ # So we use single case, all lower. Also see PEP 625 .
21
21
cd dist
22
- mv ct3 -* .tar.gz " ` echo ct3 -* .tar.gz | sed ' s/^ct3-/CT3 -/' ` "
22
+ mv CT3 -* .tar.gz " ` echo CT3 -* .tar.gz | sed ' s/^CT3-/ct3 -/' ` "
23
23
cd ..
24
24
fi
25
25
Original file line number Diff line number Diff line change 45
45
46
46
- CI(GHActions): Run tests under Python 3.13.
47
47
48
+ Build/release:
49
+
50
+ - Rename sdist to lowercase; different build tools produce different case.
51
+ This is important because stupid PyPI doesn't ignore sdists
52
+ in different cases but also doesn't allow uploading.
53
+ So we use single case, all lower. Also see PEP 625.
54
+
48
55
3.3.3.post1 (2024-02-28)
49
56
------------------------
50
57
You can’t perform that action at this time.
0 commit comments