Compare commits

..

3 Commits

Author SHA1 Message Date
Nelson Torres 3671b5b631 Nix fix for using `poetry run` instead `poetry shell`:
Since the last poetry update (2.0.0) the `poetry shell` command has been move out to a plugin, so now we use `poetry run`
this change broke the environment for the poetry to work.

Here are the missing deps that has been added for this to work aagain.
2025-01-29 01:16:33 -03:00
Tyler Goodlet 162f9ac8d3 Mask `ruff` config and pin `websockets=0.12`
- the `ruff` section in the `pyproject.toml` is somehow borked? (even
  though it def was working a while back..)
- `websockets` is completely broken in latest version since it's using
  old-ass `asyncio` APIs of some sort i think??
2025-01-29 01:16:28 -03:00
Nelson Torres ef0f76bd06 tractor branch updated, msgspec version upgraded, cython and greenback dependencies moved under dev group 2025-01-29 01:15:46 -03:00
2 changed files with 656 additions and 114 deletions

756
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -72,8 +72,22 @@ httpx = "^0.27.0"
cryptofeed = "^2.4.0"
pyarrow = "^17.0.0"
<<<<<<< HEAD
<<<<<<< HEAD
tractor = {path = "../tractor", develop = true}
websockets = "12.0"
=======
[tool.poetry.dependencies.tractor]
develop = true
git = 'https://pikers.dev/goodboy/tractor.git'
branch = 'aio_abandons'
# path = "../tractor"
>>>>>>> 35a9d8ec (tractor branch updated, msgspec version upgraded, cython and greenback dependencies moved under dev group)
=======
tractor = {path = "../tractor", develop = true}
websockets = "12.0"
>>>>>>> a0dcf14a (Mask `ruff` config and pin `websockets=0.12`)
[tool.poetry.dependencies.asyncvnc]
git = 'https://github.com/pikers/asyncvnc.git'
branch = 'main'