-
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dmitry Dygalo <[email protected]>
- Loading branch information
1 parent
4f99c8f
commit 8193c2c
Showing
3 changed files
with
5 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 |
---|---|---|
|
@@ -3,10 +3,10 @@ name = "jsonschema_rs" | |
description = "Fast JSON Schema validation for Python implemented in Rust" | ||
keywords = ["jsonschema", "validation", "rust"] | ||
authors = [ | ||
{name = "Dmitry Dygalo", email = "[email protected]"} | ||
{name = "Dmitry Dygalo", email = "[email protected]"} | ||
] | ||
maintainers = [ | ||
{name = "Dmitry Dygalo", email = "[email protected]"} | ||
{name = "Dmitry Dygalo", email = "[email protected]"} | ||
] | ||
readme = "README.rst" | ||
license = { text = "MIT" } | ||
|
@@ -22,6 +22,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Rust", | ||
] | ||
|
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 @@ | ||
[tox] | ||
skipsdist = True | ||
envlist = py{37,38,39,310,311} | ||
envlist = py{37,38,39,310,311,312} | ||
|
||
[testenv] | ||
deps = | ||
|