Including Local or Private Git Packages in Flet Build #4546
-
QuestionHi all, Does anyone have a guaranteed way to provide a local/private python package to Flet in the build process? Code sample##### Pyproject Poetry
[tool.poetry]
name = "file_tracker"
version = "0.5.0"
description = "redacted"
authors = ["amcraig"]
[tool.poetry.dependencies]
python = "^3.10"
private_package = { git = "https://github.com/private/package.git" }
flet = "^0.25.1"
##### requirements.txt
python==3.10
flet
datateam @ git+https://github.com/private/package Error messageNo response ------------------------------------------------------
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Right, parsing non-version dependencies from Poetry-style dependencies is not yet implemented. It should work with |
Beta Was this translation helpful? Give feedback.
Subscribe to #4547