Skip to content

Commit

Permalink
support python 3.13 (#103)
Browse files Browse the repository at this point in the history
* support python 3.13

* fix tox

* changelog
  • Loading branch information
mathause authored Oct 11, 2024
1 parent dd99f6e commit d9b5d7f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.12", "3.13"]
os: [ "ubuntu-latest"]

steps:
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
python-version: ["3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
longer be passed by position ([#99](https://github.com/mathause/filefinder/pull/99)).
- `FileFinder` now raises an error if an invalid `"{placeholder}"` is used
([#99](https://github.com/mathause/filefinder/pull/99)).
- Explicitly test on python 3.13 ([#103](https://github.com/mathause/filefinder/pull/103)).
- Drop support for python 3.9 ([#102](https://github.com/mathause/filefinder/pull/102)).

## v0.3.0 - 27.03.2024
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13

[options]
packages = find:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py10,py311,py312
envlist = py10,py312,py313

[testenv]
# install pytest in the virtualenv where commands will be executed
Expand Down

0 comments on commit d9b5d7f

Please sign in to comment.