Skip to content

Commit

Permalink
Merge pull request #586 from vsbogd/handle-python-312
Browse files Browse the repository at this point in the history
Manually install compatible Python version
  • Loading branch information
vsbogd authored Feb 12, 2024
2 parents 4f42be5 + 987669b commit 93f445e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
- name: Checkout source code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"

- run: |
echo "REF_NAME=${{github.ref_name}}" | tee -a $GITHUB_ENV
echo "EVENT_NAME=${{github.event_name}}" | tee -a $GITHUB_ENV
Expand All @@ -39,7 +44,6 @@ jobs:
env:
CIBW_BEFORE_ALL: sh -c "./python/install-hyperonc.sh -u https://github.com/${{github.repository}}.git -r ${{env.COMMIT_HEAD}}"
CIBW_SKIP: "*musllinux*"
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7,<3.12"
with:
package-dir: ./python

Expand Down

0 comments on commit 93f445e

Please sign in to comment.