Skip to content

Commit

Permalink
Include pyi files so type hints propagate
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonxslays committed Dec 9, 2021
1 parent 8dcddce commit a8f2d48
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "piston_rspy"
description = "Python bindings for piston_rs."
version = "0.1.2"
version = "0.1.3"
edition = "2021"
authors = ["Jonxslays"]
readme = "README.md"
Expand Down
5 changes: 4 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
include Cargo.toml
recursive-include src *
include piston_rspy/__init__.py
include piston_rspy/piston_rspy.pyi
include piston_rspy/py.typed
recursive-include src *
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ a Rust library designed for the same purpose.

# Getting started

For an in depth look at the API, check out the [Documentation](https://jonxslays.github.io/piston_rspy/piston_rspy/)!
piston_rspy officially supports Python versions 3.7, 3.8, 3.9, and 3.10.
For an in depth look at the API, check out the [documentation](https://jonxslays.github.io/piston_rspy/piston_rspy/)!

#### Installation

Expand Down Expand Up @@ -96,7 +97,7 @@ async def main() -> None:
piston_rspy.File(
name="main.py",
content="for i in range(10): print(i)",
),
)
)
)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "piston_rspy"
version = "0.1.2"
version = "0.1.3"
description = "Python bindings for piston_rs."
readme = "README.md"
documentation = "https://jonxslays.github.io/piston_rspy/piston_rspy/"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="piston_rspy",
version="0.1.2",
version="0.1.3",
description="Python bindings for piston_rs.",
author="Jonxslays",
long_description=long_description,
Expand Down

0 comments on commit a8f2d48

Please sign in to comment.