From 9f9726ab8ce0c2af83c856dd33b87af64855050e Mon Sep 17 00:00:00 2001 From: Tamas K Stenczel Date: Sat, 29 Jun 2024 08:53:06 +0100 Subject: [PATCH] CI: build on python3.12 as well --- .github/workflows/python-package.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 5dc4c93..27a05f4 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 @@ -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: | @@ -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