Skip to content

Commit 6cc41dd

Browse files
committed
BLD: upper cap setuptools, do not error on deprecationwarnings
1 parent 16ca263 commit 6cc41dd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: .github/workflows/publish-package.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,14 @@ jobs:
4141

4242
- name: Install python-build and twine
4343
run: |
44-
python -m pip install --upgrade pip setuptools
44+
python -m pip install --upgrade pip "setuptools<=67"
4545
python -m pip install build twine
4646
python -m pip list
4747
4848
- name: Build a wheel and a sdist
4949
run: |
50-
PYTHONWARNINGS=error,default::DeprecationWarning python -m build .
50+
#PYTHONWARNINGS=error,default::DeprecationWarning python -m build .
51+
python -m build .
5152
5253
- name: Verify the distribution
5354
run: twine check --strict dist/*

0 commit comments

Comments
 (0)