Skip to content

Commit a6ad860

Browse files
authored
Merge pull request #446 from aperture-data/release-0.4.29
Release 0.4.29
2 parents 6e1e3a4 + 19c7853 commit a6ad860

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

aperturedb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
logger = logging.getLogger(__name__)
99

10-
__version__ = "0.4.28"
10+
__version__ = "0.4.29"
1111

1212
# set log level
1313
logger.setLevel(logging.DEBUG)

docker/dependencies/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ENV PATH="/opt/node-${NODEJS_LTS}-linux-x64/bin:$PATH"
3333
# -- Libraries: /usr/lib/x86_64-linux-gnu/libpython3.10.so (ver 3.10.6)
3434
# -- numpy: /opt/venv/lib/python3.10/site-packages/numpy/core/include (ver 1.24.1)
3535
# -- install path: lib/python3.10/site-packages/cv2/python-3.10
36-
RUN pip install numpy
36+
RUN pip install "numpy<2"
3737

3838
RUN wget -q https://github.com/opencv/opencv/archive/$OPENCV_VERSION.tar.gz && \
3939
tar xf $OPENCV_VERSION.tar.gz && rm $OPENCV_VERSION.tar.gz && \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies = [
2020
#Folllowing is needed parallel loaders, and basic things for
2121
# making the notebooks.
2222
'scikit-image', 'image', 'requests', 'boto3',
23-
'numpy', 'matplotlib', 'pandas', 'kaggle', 'google-cloud-storage',
23+
'numpy<2', 'matplotlib', 'pandas', 'kaggle', 'google-cloud-storage',
2424
'ipython', 'dask[complete]', 'ipywidgets', 'pydantic', 'devtools', 'typer[all]',
2525
"opencv-python-headless",
2626
# Pinning this to be able to install google-cloud-bigquery

0 commit comments

Comments
 (0)