Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8cc6165

Browse files
committedApr 17, 2025·
Include queuable extra in docker image, and use more recent datalake
Previously we were pinned to an older version
1 parent 50e7327 commit 8cc6165

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed
 

‎Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN pip install \
2929
pyinotify>=0.9.4, \
3030
raven>=5.0.0 \
3131
'tox>4,<5' \
32-
'datalake<2'
32+
'datalake[queuable]>2'
3333

3434
RUN mkdir -p /opt/
3535
COPY . /opt/

‎client/pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@ datalake = "datalake.scripts.cli:cli"
5959
[tool.setuptools.packages.find]
6060
exclude = ["test"]
6161

62-
[tool.versioningit]
63-
default-version = "0.0.0-dev"
64-
6562
[tool.versioningit.format]
6663
distance = "{base_version}+{distance}.{vcs}{rev}"
6764
# Example formatted version: 1.2.3+42.ge174a1f

‎client/test/test_queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,4 +264,4 @@ def test_threaded_uploader_exits(enqueuer, faulty_uploader, random_file,
264264
random_metadata, uploaded_file_validator):
265265
enqueuer.enqueue(random_file, **random_metadata)
266266
with pytest.raises(KeyboardInterrupt):
267-
faulty_uploader.listen(timeout=1.0, workers=2)
267+
faulty_uploader.listen(timeout=0.1, workers=2)

0 commit comments

Comments
 (0)
Please sign in to comment.