Skip to content

Commit 64d017a

Browse files
Merge pull request #364 from tofu-rocketry/363-simplify-reqs
363 simplify reqs
2 parents 0539eb6 + b9cbb33 commit 64d017a

File tree

3 files changed

+6
-18
lines changed

3 files changed

+6
-18
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN yum -y install libffi-devel && yum clean all
2222
RUN yum -y install openssl && yum clean all
2323

2424
# Install the python requirements of SSM
25-
RUN pip install -r requirements-docker.txt
25+
RUN pip install -r requirements.txt
2626
# Then install the SSM
2727
RUN python3 setup.py install
2828

requirements-docker.txt

Lines changed: 0 additions & 11 deletions
This file was deleted.

requirements.txt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# Base requirements for ssm
22

3-
argo-ams-library
4-
certifi<2020.4.5.2 # Used by AMS (via requests), 2020.4.5.2 dropped support for Python 2
5-
pyopenssl >=19.1.0, <=21.0.0 # 22.0.0 dropped support for Python 2
6-
cryptography==3.3.2 # Crypto dropped support for Python 2 after 3.3
7-
stomp.py<5.0.0
8-
python-daemon<=2.3.0 # 2.3.1 dropped support for Python 2
3+
argo-ams-library>=0.5.1 # 0.4.x series no longer works with SSM
4+
pyopenssl<23.3.0 # 23.3.0 dropped support for Python 3.6
5+
cryptography<41.0.0 # 41.0.0 dropped support for Python 3.6
6+
stomp.py<8.1.1 # 8.1.1 dropped suppot for Python 3.6
7+
python-daemon
98
setuptools # Required for pkg_resources
109

1110
# Dependencies for optional dirq based sending

0 commit comments

Comments
 (0)