Skip to content

Commit ac27a7a

Browse files
Fix pypi sdist build test
Failing test: https://github.com/aboutcode-org/cyseq/actions/runs/24887717643/job/72871767414 This was from https://pypi.org/project/setuptools-scm/10.0.5/ Signed-off-by: Ayan Sinha Mahapatra <asmahapatra@aboutcode.org>
1 parent 82436d3 commit ac27a7a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pypi-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ jobs:
8686
- name: Checkout and install reqs
8787
run: |
8888
pip install --upgrade --user build twine pkginfo packaging pip setuptools cython
89+
pip install setuptools-scm==10.0.4
8990
9091
- name: Build sdist
9192
run: |

.github/workflows/test-and-build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ jobs:
7474
CIBW_ARCHS: ${{ matrix.arch }}
7575
CIBW_TEST_REQUIRES: pytest
7676
CIBW_TEST_COMMAND: pytest -vvs {project}/tests
77-
# Skip PyPy wheels
78-
CIBW_SKIP: "pp*"
7977

8078
- name: Collect built wheels
8179
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
@@ -95,6 +93,7 @@ jobs:
9593
- name: Checkout and install reqs
9694
run: |
9795
pip install --upgrade --user build twine pkginfo packaging pip setuptools cython
96+
pip install setuptools-scm==10.0.4
9897
9998
- name: Build sdist
10099
run: |

0 commit comments

Comments
 (0)