Skip to content

Commit

Permalink
fix: allow tomli-w versions above v1.0.0 (#75)
Browse files Browse the repository at this point in the history
* fix(dep): Allow tomli-w above v.1.0.0

- Add `tomli` to spellcheck configuration

* fix(dep): Allow tomli >= 2.0.1 and natsort >= 8.4.0

* fix(ci): Test workflow to python 3.13 release image

---------

Co-authored-by: louis.blazejczak-boulegue <[email protected]>
Co-authored-by: Kieran Ryan <[email protected]>
  • Loading branch information
3 people authored Dec 31, 2024
1 parent 1baad25 commit 3962eb2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run-tests:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-beta.3"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [macos-latest, windows-latest, ubuntu-latest]

runs-on: ${{ matrix.os }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Python 3.12 and 3.13 support - [#70](https://github.com/kieran-ryan/pyprojectsort/pull/70)

### Fixed

- Allow tomli-w above v1.0.0 - [#75](https://github.com/kieran-ryan/pyprojectsort/pull/75)

## 0.3.0 - 2023-07-18

### Added
Expand Down
1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"SOURCEDIR",
"testpypi",
"toctree",
"tomli",
"undoc",
"venv"
]
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ classifiers = [
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"natsort==8.4.0",
"tomli-w==1.0.0",
"tomli==2.0.1",
"natsort>=8.4.0,<9",
"tomli-w>=1.0.0",
"tomli>=2.0.1,<3",
]
description = "Formatter for pyproject.toml files"
dynamic = [
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
natsort==8.4.0
tomli==2.0.1
tomli-w==1.0.0
natsort>=8.4.0,<9
tomli>=2.0.1,<3
tomli-w>=1.0.0

0 comments on commit 3962eb2

Please sign in to comment.