We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8bcfd9 commit 6a915a8Copy full SHA for 6a915a8
.github/workflows/python.yaml
@@ -45,15 +45,14 @@ jobs:
45
- name: setup
46
uses: actions/setup-python@v4
47
with:
48
- python-version: 3.11
+ python-version: 3.10
49
- name: install
50
run: |
51
python -m pip install --upgrade pip
52
python -m pip install -r ci_requirements.txt
53
- name: build
54
55
- python ./setup.py sdist bdist_wheel
56
- ls -l dist/
+ python -m build --sdist --wheel --outdir dist/ .
57
- name: upload
58
uses: pypa/gh-action-pypi-publish@release/v1
59
python/ci_requirements.txt
@@ -1,4 +1,3 @@
1
pytest
2
pytest-cov
3
-setuptools
4
-wheel
+build
0 commit comments