Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Bump Requirements (#4759)
Browse files Browse the repository at this point in the history
* bump reqs

* new fix

* fix
  • Loading branch information
klshuster committed Aug 22, 2022
1 parent 9484b4c commit e705216
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Expand Up @@ -207,26 +207,26 @@ commands:
- setupcuda
- fixgit
- restore_cache:
key: deps-20220819-<< parameters.cachename >>-{{ checksum "requirements.txt" }}
key: deps-20220819c-<< parameters.cachename >>-{{ checksum "requirements.txt" }}
- setup
- installdeps
- << parameters.more_installs >>
- save_cache:
key: deps-20220819-<< parameters.cachename >>-{{ checksum "requirements.txt" }}
key: deps-20220819c-<< parameters.cachename >>-{{ checksum "requirements.txt" }}
paths:
- "~/venv/bin"
- "~/venv/lib"
- findtests:
marker: << parameters.marker >>
- restore_cache:
key: data-20220819-<< parameters.cachename >>-{{ checksum "teststorun.txt" }}
key: data-20220819c-<< parameters.cachename >>-{{ checksum "teststorun.txt" }}
- run:
name: Run tests
no_output_timeout: 60m
command: |
coverage run -m pytest -m << parameters.marker >> << parameters.pytest_flags >> --junitxml=test-results/junit.xml
- save_cache:
key: data-20220819-<< parameters.cachename >>-{{ checksum "teststorun.txt" }}
key: data-20220819c-<< parameters.cachename >>-{{ checksum "teststorun.txt" }}
paths:
- "~/ParlAI/data"
- codecov
Expand All @@ -243,12 +243,12 @@ commands:
- checkout
- fixgit
- restore_cache:
key: deps-20220819-bw-{{ checksum "requirements.txt" }}
key: deps-20220819c-bw-{{ checksum "requirements.txt" }}
- setup
- installdeps
- installtorchgpu
- save_cache:
key: deps-20220819-bw-{{ checksum "requirements.txt" }}
key: deps-20220819c-bw-{{ checksum "requirements.txt" }}
paths:
- "~/venv/bin"
- "~/venv/lib"
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
@@ -1,4 +1,4 @@
# comment just to bump caches
# comment to bump caches
coloredlogs==14.0
datasets<2.2.2,>=1.4.1
docutils<0.16,>=0.14
Expand Down Expand Up @@ -42,7 +42,7 @@ Sphinx~=2.2.0
subword-nmt==0.3.7
tensorboardX==2.1
tokenizers>=0.8.0
tomli<2.0.0
tomli>=2.0.0
torchtext>=0.5.0
tornado==6.0.4
tqdm~=4.62.1
Expand All @@ -51,7 +51,7 @@ Unidecode==1.1.1
urllib3>=1.26.5
websocket-client==0.56.0
jsonlines==1.2.0
numpy<=1.21 # Used to be `==1.17.5` before but tests -- pulling in latest at 1.22 not happy
numpy~=1.22
markdown<=3.3.2 # Pin to something that works so tests are happy
jinja2==3.0.3
ninja
Expand Down

0 comments on commit e705216

Please sign in to comment.