Skip to content

Commit 44191c9

Browse files
authored
Update CI.yml for PEP625
1 parent 97681f9 commit 44191c9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ jobs:
5858
name: wheels-artifact
5959

6060
- name: Build Source Distribution
61-
run: python setup.py sdist
61+
# Updated to ensure the source distribution is created with the .tar.gz extension
62+
run: python setup.py sdist --formats=gztar
6263

6364
- name: Upload Source Distribution
6465
uses: actions/upload-artifact@v4
6566
with:
66-
path: ./dist/*.zip
67+
# Updated the path to match the new .tar.gz file extension
68+
path: ./dist/*.tar.gz
6769
name: source-dist-artifact
68-
69-

0 commit comments

Comments
 (0)