Skip to content

Commit

Permalink
CI: build on python3.12 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
stenczelt committed Jun 29, 2024
1 parent aa93490 commit 9f9726a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]

steps:
- name: Checkout repository
Expand All @@ -39,7 +39,7 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude=.git,QUIP
- name: Build QUIP/libAtoms
env:
env:
QUIP_ARCH: linux_x86_64_gfortran
HAVE_GAP: 0
run: |
Expand All @@ -51,7 +51,7 @@ jobs:
git clone --recursive https://github.com/libAtoms/QUIP QUIP
mkdir -p QUIP/build/${QUIP_ARCH}
cp QUIP/.github/workflows/Makefile.inc QUIP/build/${QUIP_ARCH}/Makefile.inc
(cd QUIP && make libAtoms)
(cd QUIP && make libAtoms)
- name: Build C executable
run:
make -C libextxyz cextxyz
Expand Down

0 comments on commit 9f9726a

Please sign in to comment.