Skip to content

Commit

Permalink
Update Python versions (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
youpong authored Oct 11, 2024
1 parent 493d0e0 commit bb72eea
Show file tree
Hide file tree
Showing 6 changed files with 511 additions and 499 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
defaults:
run:
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ F1PyStats is an open-source Python3 package that provides Formula 1 data/statist

# Prerequisites
## Python3
Before installing the package, you should ensure your Python version is at least [v3.10](https://www.python.org/downloads/release/python-3100/). If your version does not meet the requirements, please [download](https://www.python.org/downloads/) a newer version to ensure the package works as expected.
Before installing the package, you should ensure your Python version is at least [v3.11](https://www.python.org/downloads/release/python-3110/). If your version does not meet the requirements, please [download](https://www.python.org/downloads/) a newer version to ensure the package works as expected.

## Poetry
The package uses [Poetry](https://python-poetry.org/) ([v1.2](https://github.com/python-poetry/poetry/releases/tag/1.2.0) or higher) as the primary dependency management tool. To install this tool, kindly follow their [official installation instructions](https://python-poetry.org/docs/).
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from nox_poetry import session

locations = "f1pystats", "tests", "noxfile.py", "docs/conf.py"
python_versions = ['3.10', '3.11', '3.12']
python_versions = ['3.11', '3.12', '3.13']


@session(python=python_versions[-1])
Expand Down
Loading

0 comments on commit bb72eea

Please sign in to comment.