-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make boxcars_py support Python 3.7-12
- Loading branch information
Showing
8 changed files
with
272 additions
and
192 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,29 +1,17 @@ | ||
[package] | ||
name = "boxcars-py" | ||
version = "0.1.15" | ||
version = "0.1.16" | ||
authors = ["Justus K <[email protected]>", "Matthew Mage <[email protected]>"] | ||
edition = "2018" | ||
|
||
[package.metadata.maturin] | ||
classifier = [ | ||
"Intended Audience :: Developers", | ||
"Operating System :: MacOS", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python", | ||
"Programming Language :: Rust", | ||
] | ||
edition = "2021" | ||
exclude = [".*", "tests/", "Makefile"] | ||
|
||
[dependencies] | ||
boxcars = "0.9.4" | ||
serde_json = "1.0.52" | ||
boxcars = "0.9.10" | ||
serde_json = "1.0.107" | ||
|
||
[dependencies.pyo3] | ||
version = "0.13.0" | ||
features = ["extension-module"] | ||
version = "0.20.0" | ||
features = ["extension-module", "abi3-py37"] | ||
|
||
[lib] | ||
name = "boxcars_py" | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
from .boxcars_py import parse_replay |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
def parse_replay(data: bytes) -> dict: ... |
Empty file.
Oops, something went wrong.