From 7e897cef68c0d18a5f3ae0d069a0ffc7886f33e6 Mon Sep 17 00:00:00 2001 From: Gunjan Chhablani Date: Fri, 23 Aug 2024 14:16:20 -0400 Subject: [PATCH] [BugFix] Fix setuptools install version (#380) * [BugFix] Fix deprecated setuptools test command * Fix pytest ini * Undo all changes * Install specific version of setuptools --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f7e3d7da..156a2405 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ install: - pip install coverage - pip install flake8 pytest PyYAML - pip install coveralls -- pip install setuptools --upgrade +- pip install setuptools==70.0.0 script: - flake8 ./ || travis_terminate 1; - python setup.py test || travis_terminate 1;