This is an automated email from the ASF dual-hosted git repository.
eamonford pushed a commit to branch s3-support
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-ingester.git
The following commit(s) were added to refs/heads/s3-support by this push:
new 7046617 requirements
7046617 is described below
commit 7046617a52d6c8ebb9cb493953c9b1d4bbcce8a3
Author: Eamon Ford <[email protected]>
AuthorDate: Mon Nov 2 16:28:20 2020 -0800
requirements
---
collection_manager/docker/Dockerfile | 3 ++-
collection_manager/requirements.txt | 4 ++--
collection_manager/setup.py | 2 +-
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/collection_manager/docker/Dockerfile
b/collection_manager/docker/Dockerfile
index 2a57784..4e72ff5 100644
--- a/collection_manager/docker/Dockerfile
+++ b/collection_manager/docker/Dockerfile
@@ -12,7 +12,8 @@ COPY collection_manager/requirements.txt
/collection_manager/requirements.txt
COPY collection_manager/README.md /collection_manager/README.md
COPY collection_manager/docker/entrypoint.sh /entrypoint.sh
-RUN cd /common && python setup.py install
+RUN cd /common && python setup.py install
RUN cd /collection_manager && python setup.py install
+RUN pip install boto3==1.16.10
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]
diff --git a/collection_manager/requirements.txt
b/collection_manager/requirements.txt
index 3402a73..c4b6323 100644
--- a/collection_manager/requirements.txt
+++ b/collection_manager/requirements.txt
@@ -3,7 +3,7 @@ pystache==0.5.4
pysolr==3.9.0
watchdog==0.10.2
requests==2.23.0
-aio-pika==6.6.1
tenacity==6.2.0
aioboto3==8.0.5
-aiohttp==3.6.2
\ No newline at end of file
+aiohttp==3.7.2
+aio-pika==6.7.1
\ No newline at end of file
diff --git a/collection_manager/setup.py b/collection_manager/setup.py
index 0616d0f..e1178f8 100644
--- a/collection_manager/setup.py
+++ b/collection_manager/setup.py
@@ -29,7 +29,7 @@ setuptools.setup(
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
- python_requires='>=3.6',
+ python_requires='>=3.8',
include_package_data=True,
install_requires=pip_requirements
)