Skip to content

Commit

Permalink
Disable built distribution for 13.6 until MobilityDB#6 is fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Diviloper committed Nov 30, 2024
1 parent 715915e commit 56215ab
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/build_pymeos_cffi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-13, macos-14 ]
# os: [ ubuntu-latest, macos-13, macos-14 ]
os: [ ubuntu-latest, macos-14 ]
include:
- ld_prefix: "/usr/local"
- os: macos-14
Expand Down Expand Up @@ -252,9 +253,9 @@ jobs:
strategy:
fail-fast: false
matrix:
# python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.8" ]
os: [ ubuntu-latest, macos-13, macos-14 ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
# os: [ ubuntu-latest, macos-13, macos-14 ]
os: [ ubuntu-latest, macos-14 ]

steps:
- name: Checkout
Expand All @@ -273,19 +274,11 @@ jobs:
cache: "pip"

- name: Install PyMEOS-CFFI wheels
if: matrix.os != 'macos-13'
run: |
python -m pip install --upgrade pip
ls -l ./pymeos_cffi_wheels
pip install -v -f ./pymeos_cffi_wheels pymeos_cffi==${{ needs.checks.outputs.version }}
- name: Install PyMEOS-CFFI wheels
if: matrix.os == 'macos-13'
run: |
python -m pip install --upgrade pip
ls -l ./pymeos_cffi_wheels
pip install -v ./pymeos_cffi_wheels/pymeos_cffi-1.1.2.post1-cp38-cp38-macosx_13_6_x86_64.whl
- name: Run PyMEOS-CFFI check
run: |
python -c "import pymeos_cffi; print(pymeos_cffi.__version__);"
Expand Down

0 comments on commit 56215ab

Please sign in to comment.