Skip to content

Commit

Permalink
migrated to python 3.9 as minimum version
Browse files Browse the repository at this point in the history
  • Loading branch information
Giacomo-Antonioli committed Feb 28, 2024
1 parent 7889032 commit fd7a4c5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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.8
- name: Set up Python 3.9
uses: actions/setup-python@v4.7.1
with:
python-version: 3.8
python-version: 3.9

- 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 @@ -12,10 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v4.7.1
with:
python-version: 3.8
python-version: 3.9

- 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.8"
python: "3.9"

formats: all

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

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


@session(python=python_versions)
Expand Down

0 comments on commit fd7a4c5

Please sign in to comment.