Skip to content

Commit

Permalink
Add python3.11 to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj authored Jan 24, 2024
1 parent 364ceb3 commit ab3f4d7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
os: [ubuntu-latest]
env:
OS: ${{ matrix.os }}
PYTHON: "3.8"
PYTHON: "3.11"

steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@master
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.11

- name: Install fmu-ensemble and test dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fmu-ensemble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- name: 📖 Checkout commit locally
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 📖 Checkout tags
# This seems necessary for setuptools_scm to be able to infer
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
test_suite="tests",
tests_require=test_requirements,
Expand Down

0 comments on commit ab3f4d7

Please sign in to comment.