Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes python 3.10 support #44

Merged
merged 3 commits into from
Aug 3, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
5 changes: 3 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 All @@ -26,6 +26,7 @@ jobs:

- name: Run autoupdate
run: poetry run pre-commit autoupdate
continue-on-error: true

- name: Run pre-commit
run: poetry run pre-commit run --all-files
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
Loading