Skip to content

Commit

Permalink
feat: Python 3.11 support
Browse files Browse the repository at this point in the history
Fixes #28
  • Loading branch information
sasanjac committed Jul 3, 2023
1 parent 4a3a433 commit 76a7875
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.10", "3.11"]

steps:
- name: Checking out repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
needs: [tests]
env:
PYTHON_VERSION: "3.10"
PYTHON_VERSION: "3.11"

steps:
- name: Check out repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
needs: [checks]
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.10", "3.11"]

steps:
- name: Check out repository
Expand Down
9 changes: 4 additions & 5 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
license = { file = "LICENSE" }
name = "ieeh-power-system-data-model"
readme = "README.md"
requires-python = ">=3.10,<3.11"
requires-python = ">=3.10"
version = "1.4.0"

[project.urls]
Expand Down

0 comments on commit 76a7875

Please sign in to comment.