Skip to content

Commit

Permalink
change poetry version spec and skip wheels < cp38
Browse files Browse the repository at this point in the history
  • Loading branch information
gschnabel committed May 30, 2024
1 parent d023761 commit ce69246
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install build deps
run: |
python -m pip install --upgrade pip
python -m pip install poetry==1.7 cibuildwheel==2.18.1 setuptools
python -m pip install poetry<=1.7 cibuildwheel==2.18.1 setuptools
python -m pip install lark appdirs pybind11 build
- name: Set endf-parserpy version based on tag
Expand All @@ -37,6 +37,7 @@ jobs:
- name: Build wheels
env:
INSTALL_ENDF_PARSERPY_CPP: yes
CIBW_SKIP: cp27-* cp34-* cp35-* cp36-* cp37-*
run: python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v4
Expand All @@ -60,7 +61,7 @@ jobs:
- name: Install build deps
run: |
python -m pip install --upgrade pip
python -m pip install poetry==1.7 setuptools lark appdirs pybind11 build
python -m pip install poetry<=1.7 setuptools lark appdirs pybind11 build
- name: Set endf-parserpy version based on tag
run: poetry version $(git describe --tags --abbrev=0)
Expand Down

0 comments on commit ce69246

Please sign in to comment.