Skip to content

Commit

Permalink
Remove python 3.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
fedejaure committed Aug 3, 2024
1 parent 745996f commit 64b917f
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 58 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[bumpversion]
commit = True
tag = False
tag = True
current_version = 0.1.0

[bumpversion:file:pyproject.toml]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v5.1.1
with:
python-version: 3.9
python-version: "3.10"

- name: Install system deps
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v5.1.1
with:
python-version: 3.9
python-version: "3.10"

- name: Install system deps
shell: bash
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v5.1.1
with:
python-version: 3.9
python-version: "3.10"

- name: Install system deps
shell: bash
Expand All @@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
os: [Ubuntu, MacOS, Windows]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12']
fail-fast: true
steps:
- uses: actions/checkout@v4.1.1
Expand Down Expand Up @@ -79,10 +79,10 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v5.1.1
with:
python-version: 3.9
python-version: "3.10"

- name: Install system deps
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.9"
python: "3.10"

formats: all

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from nox_poetry import Session, session

nox.options.sessions = ["tests", "mypy"]
python_versions = ["3.9", "3.10", "3.11", "3.12"]
python_versions = ["3.10", "3.11", "3.12"]


@session(python=python_versions)
Expand Down
47 changes: 3 additions & 44 deletions poetry.lock

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

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -24,7 +23,7 @@ classifiers=[
"Bug Tracker" = "https://github.com/rserial/flintpy/issues"

[tool.poetry.dependencies]
python = "<3.13,>=3.9"
python = "<3.13,>=3.10"
numpy = "^2.0.0"
plotly = "^5.22.0"

Expand Down

0 comments on commit 64b917f

Please sign in to comment.