From 266fc53200030144ffe983bf7c1d9366d0995fe6 Mon Sep 17 00:00:00 2001 From: Olga Golovneva Date: Fri, 17 Jun 2022 11:10:22 -0700 Subject: [PATCH 1/4] trying prev version --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3c31dcfbd32..064259b8dca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -91,7 +91,7 @@ commands: - run: name: Installs basic dependencies command: | - python -m pip install --progress-bar off --upgrade pip setuptools + python -m pip install --progress-bar off setuptools==62.3.2 python -m pip install --progress-bar off coverage python -m pip install --progress-bar off codecov mkdir -p ~/ParlAI/test-results @@ -301,7 +301,7 @@ jobs: name: Test installation instructions no_output_timeout: 60m command: | - python -m pip install --progress-bar off --upgrade pip setuptools + python -m pip install --progress-bar off pip setuptools==62.3.2 python setup.py develop parlai display_data -t integration_tests From 6ec2ffe2cb487f32e0cafe3be1aba6c37de46d8c Mon Sep 17 00:00:00 2001 From: Olga Golovneva Date: Fri, 17 Jun 2022 16:41:43 -0700 Subject: [PATCH 2/4] reverting tensorboard removal --- requirements.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5adf662e1e0..643cb7bbe7a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -41,7 +41,6 @@ sphinx_rtd_theme==0.4.3 sphinx-autodoc-typehints~=1.10.3 Sphinx~=2.2.0 subword-nmt==0.3.7 -tensorboard>2.9.0 tensorboardX==2.1 tokenizers>=0.8.0 tomli<2.0.0 @@ -57,4 +56,3 @@ jsonlines==1.2.0 numpy<=1.21 # Used to be `==1.17.5` before but tests -- pulling in latest at 1.22 not happy markdown<=3.3.2 # Pin to something that works so tests are happy jinja2==3.0.3 -protobuf<3.20,>=3.9.2 # required by {'tensorboard'} From 35adda483b545cdd58b2f9a4de3e97d5de5ea58a Mon Sep 17 00:00:00 2001 From: Olga Golovneva Date: Fri, 17 Jun 2022 18:44:13 -0700 Subject: [PATCH 3/4] forgot pip --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 064259b8dca..f122bfe0605 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -91,7 +91,7 @@ commands: - run: name: Installs basic dependencies command: | - python -m pip install --progress-bar off setuptools==62.3.2 + python -m pip install --progress-bar off pip setuptools==62.3.2 python -m pip install --progress-bar off coverage python -m pip install --progress-bar off codecov mkdir -p ~/ParlAI/test-results From 603b75f1b2b902b62c6def274b104cba26dcf350 Mon Sep 17 00:00:00 2001 From: Olga Golovneva Date: Fri, 17 Jun 2022 19:35:42 -0700 Subject: [PATCH 4/4] 3.4 should work as well --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f122bfe0605..5ab664abdbf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -91,7 +91,7 @@ commands: - run: name: Installs basic dependencies command: | - python -m pip install --progress-bar off pip setuptools==62.3.2 + python -m pip install --progress-bar off pip setuptools==62.3.4 python -m pip install --progress-bar off coverage python -m pip install --progress-bar off codecov mkdir -p ~/ParlAI/test-results @@ -301,7 +301,7 @@ jobs: name: Test installation instructions no_output_timeout: 60m command: | - python -m pip install --progress-bar off pip setuptools==62.3.2 + python -m pip install --progress-bar off pip setuptools==62.3.4 python setup.py develop parlai display_data -t integration_tests