Compare commits
No commits in common. "d96e9d4f11c56b6d15917843e051888419884ac5" and "1705afb6079f48a811290443031a9da26d69fa2e" have entirely different histories.
d96e9d4f11
...
1705afb607
|
@ -161,12 +161,7 @@ class NativeStorageClient:
|
||||||
|
|
||||||
def index_files(self):
|
def index_files(self):
|
||||||
for path in self._datadir.iterdir():
|
for path in self._datadir.iterdir():
|
||||||
if (
|
if path.name in {'borked', 'expired',}:
|
||||||
path.name in {'borked', 'expired',}
|
|
||||||
or
|
|
||||||
'.parquet' not in str(path)
|
|
||||||
):
|
|
||||||
# ignore all non-apache files (for now)
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
key: str = path.name.rstrip('.parquet')
|
key: str = path.name.rstrip('.parquet')
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -25,11 +25,11 @@ build-backend = "poetry.core.masonry.api"
|
||||||
ignore = []
|
ignore = []
|
||||||
|
|
||||||
# https://docs.astral.sh/ruff/settings/#lint_per-file-ignores
|
# https://docs.astral.sh/ruff/settings/#lint_per-file-ignores
|
||||||
# "piker/ui/qt.py" = [
|
"piker/ui/qt.py" = [
|
||||||
# "E402",
|
"E402",
|
||||||
# 'F401', # unused imports (without __all__ or blah as blah)
|
'F401', # unused imports (without __all__ or blah as blah)
|
||||||
# # "F841", # unused variable rules
|
# "F841", # unused variable rules
|
||||||
# ]
|
]
|
||||||
# ignore-init-module-imports = false
|
# ignore-init-module-imports = false
|
||||||
|
|
||||||
# ------ - ------
|
# ------ - ------
|
||||||
|
@ -72,8 +72,12 @@ httpx = "^0.27.0"
|
||||||
cryptofeed = "^2.4.0"
|
cryptofeed = "^2.4.0"
|
||||||
pyarrow = "^17.0.0"
|
pyarrow = "^17.0.0"
|
||||||
|
|
||||||
tractor = {path = "../tractor", develop = true}
|
[tool.poetry.dependencies.tractor]
|
||||||
websockets = "12.0"
|
develop = true
|
||||||
|
git = 'https://pikers.dev/goodboy/tractor.git'
|
||||||
|
branch = 'aio_abandons'
|
||||||
|
# path = "../tractor"
|
||||||
|
|
||||||
[tool.poetry.dependencies.asyncvnc]
|
[tool.poetry.dependencies.asyncvnc]
|
||||||
git = 'https://github.com/pikers/asyncvnc.git'
|
git = 'https://github.com/pikers/asyncvnc.git'
|
||||||
branch = 'main'
|
branch = 'main'
|
||||||
|
|
Loading…
Reference in New Issue