We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16ca263 commit 6cc41ddCopy full SHA for 6cc41dd
.github/workflows/publish-package.yml
@@ -41,13 +41,14 @@ jobs:
41
42
- name: Install python-build and twine
43
run: |
44
- python -m pip install --upgrade pip setuptools
+ python -m pip install --upgrade pip "setuptools<=67"
45
python -m pip install build twine
46
python -m pip list
47
48
- name: Build a wheel and a sdist
49
50
- PYTHONWARNINGS=error,default::DeprecationWarning python -m build .
+ #PYTHONWARNINGS=error,default::DeprecationWarning python -m build .
51
+ python -m build .
52
53
- name: Verify the distribution
54
run: twine check --strict dist/*
0 commit comments