Skip to content

Commit

Permalink
Merge pull request #257 from PowerGridModel/drop-python-39
Browse files Browse the repository at this point in the history
Dropping 3.9 support
  • Loading branch information
mgovers authored Jul 15, 2024
2 parents 7b7b81d + 58f2358 commit c89d49a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test-and-sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ["3.9", "3.10", "3.11", "3.12"]
python: ["3.10", "3.11", "3.12"]
exclude:
- os: macos-latest
python: "3.9"
python: "3.10"
fail-fast: false
runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -131,10 +131,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ["3.9", "3.10", "3.11", "3.12"]
python: ["3.10", "3.11", "3.12"]
exclude:
- os: macos-latest
python: "3.9"
python: "3.10"
fail-fast: false
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sphinx:
build:
os: "ubuntu-20.04"
tools:
python: "3.9"
python: "3.10"
jobs:
post_install:
# Build package with doc requirements from pyproject.optional-dependencies
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers=[
"Operating System :: MacOS",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.20",
"openpyxl",
Expand Down Expand Up @@ -84,7 +84,7 @@ addopts = ["--cov=power_grid_model_io", "--cov-report=term", "--cov-report=html:

[tool.black]
line-length = 120
target-version = ["py39", "py310", "py311"]
target-version = ["py310", "py311"]

[tool.isort]
profile = "black"
Expand Down

0 comments on commit c89d49a

Please sign in to comment.