Pin tomlkit as a path dep for now
parent
555f4a69e8
commit
93e8c9853a
|
@ -1070,7 +1070,7 @@ description = "structured concurrrent `trio`-\"actors\""
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.10"
|
python-versions = ">=3.10"
|
||||||
files = []
|
files = []
|
||||||
develop = false
|
develop = true
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
async_generator = "*"
|
async_generator = "*"
|
||||||
|
@ -1363,4 +1363,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p
|
||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.0"
|
lock-version = "2.0"
|
||||||
python-versions = "^3.10"
|
python-versions = "^3.10"
|
||||||
content-hash = "90313784542c1955425e09c2a9238c2f1682200c99d74c5a5e8d0c2e6bae64d3"
|
content-hash = "60794b764aa110829379b5c12ea0a0715896d566f692a68330f708071a8b2ecf"
|
||||||
|
|
|
@ -44,12 +44,25 @@ pyqt5 = "^5.15.9"
|
||||||
xonsh = "^0.14.0"
|
xonsh = "^0.14.0"
|
||||||
prompt-toolkit = "^3.0.39"
|
prompt-toolkit = "^3.0.39"
|
||||||
|
|
||||||
# pinned from git
|
# pinned from git for "hackability"
|
||||||
# tractor = { path = '../tractor/', develop = true }
|
|
||||||
tractor = { git = 'https://github.com/goodboy/tractor.git', branch = 'piker_pin' }
|
|
||||||
pyqtgraph = { git = 'https://github.com/pikers/pyqtgraph.git' }
|
pyqtgraph = { git = 'https://github.com/pikers/pyqtgraph.git' }
|
||||||
asyncvnc = { git = 'https://github.com/pikers/asyncvnc.git', branch = 'main' }
|
|
||||||
tomlkit = { git = 'https://github.com/pikers/tomlkit.git', branch = 'piker_pin' }
|
[tool.poetry.dependencies.asyncvnc]
|
||||||
|
git = 'https://github.com/pikers/asyncvnc.git'
|
||||||
|
branch = 'main'
|
||||||
|
|
||||||
|
[tool.poetry.dependencies.tomlkit]
|
||||||
|
# git = 'https://github.com/pikers/tomlkit.git',
|
||||||
|
# branch = 'piker_pin'
|
||||||
|
path = "../tomlkit/"
|
||||||
|
develop = true
|
||||||
|
|
||||||
|
# tractor = { git = 'https://github.com/goodboy/tractor.git', branch = 'piker_pin' , develop = true}
|
||||||
|
# tractor = { path = '../tractor/', develop = true }
|
||||||
|
[tool.poetry.dependencies.tractor]
|
||||||
|
git = 'https://github.com/goodboy/tractor.git'
|
||||||
|
branch = 'piker_pin'
|
||||||
|
develop = true
|
||||||
|
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
|
|
Loading…
Reference in New Issue