-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Templates for models * Refactored model templates to allow renaming fields * Set version to prerelease * Update CI
- Loading branch information
Showing
30 changed files
with
23,746 additions
and
2,421 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,6 +1,6 @@ | ||
[package] | ||
name = "py-horned-owl" | ||
version = "1.1.0" | ||
version = "1.2.0-dev1" | ||
authors = ["Janna Hastings <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
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,24 @@ | ||
all: lib pyi | ||
|
||
dev: mdev pyi | ||
|
||
mdev: model docs | ||
venv/bin/maturin develop | ||
|
||
pyi: venv | ||
venv/bin/python3 scripts/gen_pyi.py | ||
|
||
docs: src/doc.rs | ||
|
||
#src/doc.rs: venv | ||
# venv/bin/python3 scripts/build_doc.py | ||
|
||
model: venv | ||
venv/bin/python3 scripts/build_model.py | ||
|
||
lib: model docs | ||
venv/bin/maturin build --release | ||
|
||
venv: | ||
python3 -m venv venv | ||
venv/bin/pip3 install -r requirements.txt |
Oops, something went wrong.