Skip to content

Commit 9c4bb47

Browse files
authored
Merge pull request #87 from jvkersch/update-ci-matrix
Update CI and fix Linux build
2 parents a9559ec + ff99ff7 commit 9c4bb47

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/run-unittests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,17 @@ on:
99
jobs:
1010
build:
1111

12-
runs-on: ubuntu-latest
12+
runs-on: ${{ matrix.os }}
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
16+
os: [ubuntu-latest, macos-latest]
17+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1718

1819
steps:
19-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2021
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v5
2223
with:
2324
python-version: ${{ matrix.python-version }}
2425
- name: Install package

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def build_concorde():
9191
print("building concorde")
9292
_run("tar xzvf concorde.tgz", "build")
9393

94-
cflags = "-fPIC -O2 -g -ansi"
94+
cflags = "-fPIC -O2 -g -std=gnu89"
9595

9696
if platform.system().startswith("Darwin"):
9797
flags = "--host=darwin"

0 commit comments

Comments
 (0)