-
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.
* Add support for Python 3.12 Signed-off-by: Bartosz Lewandowski <[email protected]> * Remove Python 3.7 support Signed-off-by: Bartosz Lewandowski <[email protected]> * Update lock files Signed-off-by: Bartosz Lewandowski <[email protected]> * Set toolchain: stable for test workflow Signed-off-by: Bartosz Lewandowski <[email protected]>
- Loading branch information
1 parent
19e2c71
commit f28c9d4
Showing
6 changed files
with
18 additions
and
68 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 @@ | ||
[package] | ||
name = "rfernet" | ||
version = "0.3.2" | ||
version = "0.3.3" | ||
authors = ["Aviram Hassan <[email protected]>"] | ||
description = "Fast Fernet bindings for Python" | ||
license = "MIT" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 @@ | ||
[project] | ||
name = "rfernet" | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
classifier = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
|
@@ -9,25 +9,25 @@ classifier = [ | |
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python", | ||
"Programming Language :: Rust", | ||
"Typing :: Typed", | ||
] | ||
|
||
[tool.poetry] | ||
name = "rfernet" | ||
version = "0.3.2" | ||
version = "0.3.3" | ||
description = "Fast Fernet bindings for Python" | ||
authors = ["Aviram Hassan <[email protected]>"] | ||
license = "MIT" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
python = "^3.8" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pytest = "^7.4" | ||
|
@@ -39,7 +39,7 @@ strip = true | |
|
||
[tool.black] | ||
line-length = 88 | ||
target-version = ['py37', 'py38'] | ||
target-version = ['py38'] | ||
include = '\.pyi?$' | ||
|
||
[build-system] | ||
|