Skip to content

Commit

Permalink
Pin tomlkit as a path dep for now
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed Aug 25, 2023
1 parent ea9a5e5 commit 94540ce
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 18 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 94540ce

Please sign in to comment.