Skip to content

Commit

Permalink
Update to Python 3.13 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkelaita authored Dec 12, 2024
2 parents 0726910 + 7477c1e commit 475a2f4
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on:
push:

env:
default-python: "3.12"
default-python: "3.13"
minimum-supported-python: "3.9"

jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- name: Checkout code
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ _Current version: 0.0.37_

[PyPi link](https://pypi.org/project/l2m2/)

### In Development

#### Added

- Support for [Python 3.13](https://www.python.org/downloads/release/python-3130/).

### 0.0.37 - December 9, 2024

> [!CAUTION]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ Your name is Pierce and you are a software engineer.
Contributions are welcome! Please see the below contribution guide.
- **Requirements**
- Python >= 3.12
- Python >= 3.13
- [GNU Make](https://www.gnu.org/software/make/)
- **Setup**
- Clone this repository and create a Python virtual environment.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true

python_version = "3.12"
python_version = "3.13"
18 changes: 9 additions & 9 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
wheel>=0.43.0
twine>=5.0.0
wheel>=0.45.1
twine>=6.0.1
setuptools>=69.2.0
pytest>=8.1.1
pytest-cov>=5.0.0
pytest-asyncio>=0.23.6
flake8>=7.0.0
pytest>=8.3.4
pytest-cov>=6.0.0
pytest-asyncio>=0.24.0
flake8>=7.1.1
python-dotenv>=1.0.1
build>=1.2.1
mypy>=1.9.0
build>=1.2.2.post1
mypy>=1.13.0
requests-mock>=1.12.1
types-requests>=2.32.0.20240602
types-requests>=2.32.0.20241016

0 comments on commit 475a2f4

Please sign in to comment.