Skip to content

Commit

Permalink
try python 3.10 as minimal version
Browse files Browse the repository at this point in the history
  • Loading branch information
krangelov committed Apr 15, 2024
1 parent 51c34e3 commit cce5465
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build-majestic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:

macos-runtime:
name: Runtime (macOS)
runs-on: macOS-latest
runs-on: macOS-11

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
macos-haskell:
name: Haskell (macOS)
runs-on: macOS-latest
runs-on: macOS-11
needs: macos-runtime

steps:
Expand All @@ -194,13 +194,12 @@ jobs:
macos-python:
name: Python (macOS)
runs-on: macOS-latest
runs-on: macOS-11
needs: macos-runtime
env:
EXTRA_INCLUDE_DIRS: /usr/local/include
EXTRA_LIB_DIRS: /usr/local/lib
MACOSX_DEPLOYMENT_TARGET: 12.0


steps:
- uses: actions/checkout@v3
- name: Download artifact
Expand All @@ -219,7 +218,7 @@ jobs:
env:
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: "pytest {project}/src/runtime/python"
CIBW_SKIP: "pp* cp36*"
CIBW_SKIP: "pp* cp36* cp37* cp38* cp39*"
run: |
python3 -m cibuildwheel src/runtime/python --output-dir wheelhouse
Expand All @@ -230,7 +229,7 @@ jobs:

# macos-javascript:
# name: JavaScript (macOS)
# runs-on: macOS-latest
# runs-on: macOS-11
# needs: macos-runtime
#
# steps:
Expand Down

0 comments on commit cce5465

Please sign in to comment.