Pin tomlkit as a path dep for now

ib_py311_fixes
Tyler Goodlet 2023-08-25 13:13:29 -04:00
parent ea9a5e524c
commit 94540ce1cf
2 changed files with 20 additions and 7 deletions

4
poetry.lock generated
View File

@ -1070,7 +1070,7 @@ description = "structured concurrrent `trio`-\"actors\""
optional = false
python-versions = ">=3.10"
files = []
develop = false
develop = true
[package.dependencies]
async_generator = "*"
@ -1363,4 +1363,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p
[metadata]
lock-version = "2.0"
python-versions = "^3.10"
content-hash = "90313784542c1955425e09c2a9238c2f1682200c99d74c5a5e8d0c2e6bae64d3"
content-hash = "60794b764aa110829379b5c12ea0a0715896d566f692a68330f708071a8b2ecf"

View File

@ -44,12 +44,25 @@ pyqt5 = "^5.15.9"
xonsh = "^0.14.0"
prompt-toolkit = "^3.0.39"
# pinned from git
# tractor = { path = '../tractor/', develop = true }
tractor = { git = 'https://github.com/goodboy/tractor.git', branch = 'piker_pin' }
# pinned from git for "hackability"
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]