Skip to content

Commit

Permalink
run tests on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-sicho committed May 27, 2024
1 parent cb2da35 commit 14b7492
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ] # FIXME: add macos-latest and windows-latest (removed for now due to limited debugging options)
python-version: [ '3.10' ]
python-version: [ '3.12' ]
fail-fast: false
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.12'

- name: Cache Python Environment
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre_merge_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.12'

- name: Cache Python Environment
uses: actions/cache@v3
Expand Down
11 changes: 3 additions & 8 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,7 @@ stages:
script:
- cd testing && QSPPRED_TEST_SPLIT_UNITS=true QSPRPRED_VERBOSE_LOGGING=true ./run.sh

# # Run tests on Python version 11 (linux image)
# test:python3.11:
# extends: .test
# image: python:3.11

# Run tests on Python version 10 (linux image)
test:python3.10:
# Run tests on the recent Python (linux image)
test:python3.12:
extends: .test
image: python:3.10
image: python:3.12

0 comments on commit 14b7492

Please sign in to comment.