-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from kafonek/hatch
Hatch to manage Python virtualenvs
- Loading branch information
Showing
6 changed files
with
29 additions
and
23 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 |
---|---|---|
|
@@ -2,10 +2,7 @@ | |
name = "y-py" | ||
version = "0.5.4" | ||
rust-version = "1.58" | ||
authors = ["John Waidhofer <[email protected]>", "Kevin Jahns <[email protected]>", "Pierre-Olivier Simonard <[email protected]>"] | ||
edition = "2018" | ||
homepage = "https://github.com/y-crdt/ypy" | ||
repository = "https://github.com/y-crdt/ypy" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
|
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,3 +1,20 @@ | ||
[build-system] | ||
requires = ["maturin>=0.13,<0.14"] | ||
build-backend = "maturin" | ||
|
||
[project] | ||
name = "y-py" | ||
version = "0.5.4" | ||
description = "Python bindings for the Y-CRDT built from yrs (Rust)" | ||
authors = [ | ||
{ name = "John Waidhofer", email = "[email protected]" }, | ||
{ name = "Kevin Jahns", email = "[email protected]" }, | ||
{ name = "Pierre-Olivier Simonard", email = "[email protected]" } | ||
] | ||
readme = "README.md" | ||
homepage = "https://github.com/y-crdt/ypy" | ||
repository = "https://github.com/y-crdt/ypy" | ||
dependencies = ["pytest", "maturin"] | ||
|
||
[[tool.hatch.envs.test.matrix]] | ||
python = ["37", "38", "39", "310", "311"] |