We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af3d864 commit 4866eedCopy full SHA for 4866eed
.github/workflows/publish-to-pypi.yaml
@@ -8,14 +8,15 @@ jobs:
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@main
11
- - uses: conda-incubator/setup-miniconda@v2
+ - name: Set up Python 3.8
12
+ uses: actions/setup-python@v1
13
with:
- auto-update-conda: true
14
python-version: 3.8
15
- name: Install build tools
16
run: |
17
python -m pip install build setuptools_scm wheel
18
- conda install -c conda-forge numpy cython pyfftw
+ python -m pip install numpy cython pyfftw
19
+ python setup.py --version
20
- name: Build a source tarball
21
run: python -m build --no-isolation
22
- name: Build a manylinux binary wheel
0 commit comments