Skip to content

Commit 956d5d2

Browse files
committed
Downgrade numpy due to a compatibility issue. Add Makefile command to test Docker build.
1 parent 462171e commit 956d5d2

File tree

3 files changed

+66
-54
lines changed

3 files changed

+66
-54
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,10 @@ run-all-python-unit-tests:
117117
poetry run make test && \
118118
deactivate \
119119
); done
120+
121+
build-all-docker-images:
122+
for dir in $(PYTHON_PROJECT_DIRS_WITH_UNIT_TESTS); do \
123+
for dockerfile in $$(ls $$dir/*Dockerfile); do \
124+
echo $$dockerfile && docker build --file $$dockerfile $$dir; \
125+
done; \
126+
done

recordprocessor/poetry.lock

Lines changed: 58 additions & 54 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

recordprocessor/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pandas = "^2.3.0"
2626
freezegun = "^1.5.2"
2727
coverage = "^7.9.1"
2828
redis = "^6.2.0"
29+
numpy = "~2.2.6"
2930

3031
[build-system]
3132
requires = ["poetry-core ~= 1.5.0"]

0 commit comments

Comments
 (0)