Skip to content

Commit 6a915a8

Browse files
committed
update
1 parent b8bcfd9 commit 6a915a8

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/python.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,14 @@ jobs:
4545
- name: setup
4646
uses: actions/setup-python@v4
4747
with:
48-
python-version: 3.11
48+
python-version: 3.10
4949
- name: install
5050
run: |
5151
python -m pip install --upgrade pip
5252
python -m pip install -r ci_requirements.txt
5353
- name: build
5454
run: |
55-
python ./setup.py sdist bdist_wheel
56-
ls -l dist/
55+
python -m build --sdist --wheel --outdir dist/ .
5756
- name: upload
5857
uses: pypa/gh-action-pypi-publish@release/v1
5958
with:

python/ci_requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
pytest
22
pytest-cov
3-
setuptools
4-
wheel
3+
build

0 commit comments

Comments
 (0)