Skip to content

Commit 6341862

Browse files
committed
Updated Python requirements to include 3.12
1 parent 2f71e2d commit 6341862

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.10", "3.11"]
10+
python-version: ["3.10", "3.11", "3.12"]
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.10", "3.11"]
11+
python-version: ["3.10", "3.11", "3.12"]
1212

1313
steps:
1414
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'poetry.core.masonry.api'
44

55
[tool.poetry]
66
name = 'exodus_helper'
7-
version = '1.1.1'
7+
version = '1.1.2'
88
description = 'A package for manipulating ExodusII databases'
99
license = 'BSD-3-Clause'
1010
authors = ['Coleman Alleman <callema@sandia.gov>']
@@ -19,7 +19,7 @@ classifiers = [
1919
packages =[{include='exodus_helper'}]
2020

2121
[tool.poetry.dependencies]
22-
python = '>=3.10,<3.12'
22+
python = '>=3.10,<3.13'
2323
netCDF4 = '^1'
2424
numpy = '^1'
2525
packaging = '^24'

0 commit comments

Comments
 (0)