Skip to content

Commit

Permalink
Bump minimum supported python to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
has2k1 committed May 18, 2024
1 parent 13b491b commit 73f1eed
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

strategy:
matrix:
python-version: [3.11]
python-version: [3.12]

steps:
- name: Checkout Code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]

steps:
- name: Checkout Code
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:

strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]

steps:
- name: Checkout Code
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

strategy:
matrix:
python-version: [3.9, 3.12]
python-version: [3.10, 3.12]

steps:
- name: Checkout Code
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:

strategy:
matrix:
python-version: [3.11]
python-version: [3.12]
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:

strategy:
matrix:
python-version: [3.11]
python-version: [3.12]

steps:
- name: Checkout Code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: [3.11]
python-version: [3.12]

steps:
- name: Checkout Code
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:

strategy:
matrix:
python-version: [3.11]
python-version: [3.12]

steps:
- name: Checkout Code
Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ classifiers = [
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -30,7 +29,7 @@ dependencies = [
"scipy>=1.7.0",
"statsmodels>=0.14.0",
]
requires-python = ">=3.9"
requires-python = ">=3.10"

[project.optional-dependencies]
all = [
Expand All @@ -55,8 +54,6 @@ doc = [
"click",
"numpydoc>=0.9.1",
"quartodoc>=0.7.2",
# Use importlib.resources when min supported python >= 3.9.0
"importlib_resources",
]

lint = [
Expand Down

0 comments on commit 73f1eed

Please sign in to comment.