Skip to content

Commit

Permalink
Update to maturin 1 and add Python 3.12 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xhochy committed Nov 29, 2023
1 parent 234bb4b commit 6df307a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

2.1.0
-----

* Update to `maturin>=1,<2`
* Test with Python 3.12

2.0.0
-----

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[build-system]
requires = ["cffi", "maturin>=0.13,<0.14"]
requires = ["cffi", "maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "urlquote"
authors = [{name = "Blue Yonder", email = "[email protected]"}]
description='Fast quoting and unquoting of urls.'
readme = "README.md"
version = "2.0.0"
version = "2.1.0"
dependencies = ["cffi"]

[project.license]
Expand All @@ -22,4 +22,4 @@ changelog = "https://github.com/blue-yonder/urlquote/main/Changelog.md"

[tool.maturin]
# Bindings type
bindings = "cffi"
bindings = "cffi"

0 comments on commit 6df307a

Please sign in to comment.