From 756cb6e1d740fda039c19d643274c2b4cbcd31e3 Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Thu, 2 Sep 2021 15:30:24 -0700 Subject: [PATCH] Using pip freeze to get all the new requirements --- .github/workflows/build-and-validate.yml | 2 + .github/workflows/detection-testing.yml | 3 + requirements.txt | 142 +++++++++++------------ 3 files changed, 76 insertions(+), 71 deletions(-) diff --git a/.github/workflows/build-and-validate.yml b/.github/workflows/build-and-validate.yml index 922b248ba8..353d231c40 100644 --- a/.github/workflows/build-and-validate.yml +++ b/.github/workflows/build-and-validate.yml @@ -80,8 +80,10 @@ jobs: rm -rf venv python3 -m venv --clear venv source venv/bin/activate + python3 -m pip install --upgrade pip python3 -m pip install wheel python3 -m pip install -q -r requirements.txt + pip freeze - name: run validate diff --git a/.github/workflows/detection-testing.yml b/.github/workflows/detection-testing.yml index 475c3b3320..11c80e3a66 100644 --- a/.github/workflows/detection-testing.yml +++ b/.github/workflows/detection-testing.yml @@ -63,7 +63,10 @@ jobs: rm -rf venv python3 -m venv --clear venv source venv/bin/activate + python3 -m pip install --upgrade pip + python3 -m pip install wheel python3 -m pip install -q -r requirements.txt + #Set up credentials in the environment so that boto will be able to find them diff --git a/requirements.txt b/requirements.txt index 57b5a05edc..176516a1c6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,71 +1,71 @@ -antlr4-python3-runtime==4.9.2 -appdirs==1.4.4 -aspy.yaml==1.3.0 -attackcti==0.3.4.3 -attrs==21.2.0 -CacheControl==0.12.6 -certifi==2021.5.30 -cfgv==3.3.0 -chardet==4.0.0 -colorama==0.4.4 -coloredlogs==14.0 -configparser==5.0.2 -contextlib2==0.6.0.post1 -distlib==0.3.2 -distro==1.5.0 -filelock==3.0.12 -fire==0.3.1 -gitdb==4.0.5 -html5lib==1.1 -humanfriendly==9.1 -identify==2.2.10 -idna==2.10 -importlib-metadata==4.0.1 -importlib-resources==5.2.0 -ipaddr==2.2.0 -Jinja2==3.0.0 -jsonschema==3.2.0 -lockfile==0.12.2 -MarkupSafe==2.0.1 -more-itertools==8.7.0 -msgpack==1.0.2 -nodeenv==1.6.0 -packaging==21.0 -pathlib2==2.3.6 -pendulum==1.2.5 -pep517==0.10.0 -Pillow==8.3.1 -pre-commit==2.13.0 -progress==1.5 -prompt-toolkit==1.0.14 -pyfiglet==0.8.post1 -Pygments==2.9.0 -PyInquirer==1.0.3 -pyparsing==2.4.7 -pyrsistent==0.18.0 -python-dateutil==2.8.1 -pytoml==0.1.21 -pytz==2021.1 -pytzdata==2020.1 -PyYAML==5.4.1 -regex==2021.7.6 -requests==2.25.1 -retrying==1.3.3 -scandir==1.10.0 -semantic-version==2.8.5 -simplejson==3.17.2 -six==1.16.0 -sly==0.4 -smmap==3.0.5 -stix2==2.1.0 -stix2-patterns==1.2.1 -taxii2-client==2.3.0 -termcolor==1.1.0 -toml==0.10.2 -typing==3.7.4.3 -tzlocal==2.1 -urllib3==1.26.6 -virtualenv==20.4.6 -wcwidth==0.2.5 -webencodings==0.5.1 -zipp==3.4.1 \ No newline at end of file +antlr4-python3-runtime +appdirs +aspy.yaml +attackcti +attrs +CacheControl +certifi +cfgv +chardet +colorama +coloredlogs +configparser +contextlib2 +distlib +distro +filelock +fire +gitdb +html5lib +humanfriendly +identify +idna +importlib-metadata +importlib-resources +ipaddr +Jinja2 +jsonschema +lockfile +MarkupSafe +more-itertools +msgpack +nodeenv +packaging +pathlib2 +pendulum +pep517 +Pillow +pre-commit +progress +prompt-toolkit +pyfiglet +Pygments +PyInquirer +pyparsing +pyrsistent +python-dateutil +pytoml +pytz +pytzdata +PyYAML +regex +requests +retrying +scandir +semantic-version +simplejson +six +sly +smmap +stix2 +stix2-patterns +taxii2-client +termcolor +toml +typing +tzlocal +urllib3 +virtualenv +wcwidth +webencodings +zipp \ No newline at end of file