Skip to content

Commit

Permalink
fix wheel building
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudon committed Oct 21, 2022
1 parent 5c65388 commit 160362e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
CIBW_BUILD_VERBOSITY: 2
# Only build on Python 3.x
CIBW_BUILD: 'cp3?-*'
CIBW_SKIP: 'cp35-* cp39-* *-manylinux_i686'
CIBW_SKIP: 'cp35-* cp310-* *-manylinux_i686'
CIBW_BEFORE_TEST: pip install pybind11 pytest
CIBW_TEST_EXTRAS: "all"
CIBW_TEST_COMMAND: pytest {package}/tests
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.7'
python-version: '3.9'

- name: Install cibuildwheel
run: |
Expand Down Expand Up @@ -65,10 +65,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.6
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.9
- name: Build a source tarball
run: |
python -m pip install pybind11
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
),
]
plotly_require = ["plotly>=3.6.0"]
contrib_require = ["scikit-image>=0.18.1"]
test_require = [
"pyyaml",
"dictdiffer",
Expand Down Expand Up @@ -48,8 +47,7 @@
zip_safe=False,
extras_require={
"plotly": plotly_require,
"contrib": contrib_require,
"all": plotly_require + contrib_require + test_require,
"all": plotly_require + test_require,
},
entry_points={"console_scripts": ["pygenstability=pygenstability.app:cli"]},
packages=find_packages("src", exclude=["tests"]),
Expand Down

0 comments on commit 160362e

Please sign in to comment.