-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to maturin 1 and add Python 3.12 to CI
- Loading branch information
Showing
3 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
----- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
|
@@ -22,4 +22,4 @@ changelog = "https://github.com/blue-yonder/urlquote/main/Changelog.md" | |
|
||
[tool.maturin] | ||
# Bindings type | ||
bindings = "cffi" | ||
bindings = "cffi" |