forked from kantord/LibreLingo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use local packages in pyproject.toml
Using local packages instead of versioned pypi packages allows for instant updates to sub-packages without needing to create a new release. Packages can now be installed with one `poetry install` command in the root librelingo project. Version drift between sub-packages is also stopped. It's impossible for librelingo-json-export and librelingo-yaml-loader to depend on different versions of librelingo-fakes. https://github.com/LibreLingo/LibreLingo/issues/3023\ kantord#2763
- Loading branch information
1 parent
8c3f6e1
commit da92f60
Showing
6 changed files
with
12 additions
and
12 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
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
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 |
---|---|---|
|
@@ -8,8 +8,8 @@ authors = ["Your Name <[email protected]>"] | |
python = "^3.8" | ||
requests = "^2.26.0" | ||
Jinja2 = "^3.0.3" | ||
librelingo-json-export = "^0.11.0" | ||
librelingo-yaml-loader = "^1.12.0" | ||
librelingo-json-export = { path = "../librelingo_json_export/", develop = true } | ||
librelingo-yaml-loader = { path = "../librelingo_yaml_loader/", develop = true } | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
||
|