We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24cd9db commit bdca67bCopy full SHA for bdca67b
.github/workflows/release.yml
@@ -12,8 +12,8 @@ jobs:
12
fail-fast: false
13
matrix:
14
os:
15
- - ubuntu-20.04
16
- - macos-12
+ - ubuntu-24.04
+ - macos-latest
17
- windows-latest
18
steps:
19
- uses: actions/checkout@v4
@@ -24,10 +24,10 @@ jobs:
24
- name: Install dependencies
25
run: |
26
python -m pip install --upgrade pip
27
- pip install setuptools wheel
+ pip install setuptools wheel build
28
- name: build
29
30
python setup.py build
31
- name: package
32
33
- python setup.py sdist bdist_wheel
+ python -m build
setup.cfg
@@ -1,5 +1,5 @@
1
[metadata]
2
-description-file = README.rst
+description_file = README.rst
3
4
[bdist_wheel]
5
universal=1
0 commit comments