From ddb748591a02e7bbf9d105e7bd476575ed4982fb Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Wed, 7 Aug 2019 10:05:52 -0400 Subject: [PATCH 1/5] specify zip_safe=False Without this it seems to want to pull in `ply` during build time. Messes with certain packages that disable downloads during setup --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2dcb5db..1d7bd94 100644 --- a/setup.py +++ b/setup.py @@ -162,5 +162,5 @@ # 'sample=sample:main', # ], # }, - + zip_safe=False, ) From 31482546438394c4165bce26bde2d1c1bfb6a705 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Thu, 8 Aug 2019 20:18:11 -0400 Subject: [PATCH 2/5] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1d7bd94..e2ce595 100644 --- a/setup.py +++ b/setup.py @@ -162,5 +162,5 @@ # 'sample=sample:main', # ], # }, - zip_safe=False, + # zip_safe=False, ) From b60bcfda2272c42a89ba25a3d9420d6a078fbdba Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Thu, 8 Aug 2019 20:19:14 -0400 Subject: [PATCH 3/5] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cef700d..f406e41 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ install: script: # - coverage run tests.py - - pip install . + - pip install . -vv --no-build-isolation - python -c "import os; os.chdir('..'); import getversion" - pip uninstall -y getversion # so that the setuptools_scm test can be executed # ***tests*** From a668cf6f8ab0b727273ccf980e170082736cd475 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Fri, 9 Aug 2019 09:37:37 -0400 Subject: [PATCH 4/5] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f406e41..cef700d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ install: script: # - coverage run tests.py - - pip install . -vv --no-build-isolation + - pip install . - python -c "import os; os.chdir('..'); import getversion" - pip uninstall -y getversion # so that the setuptools_scm test can be executed # ***tests*** From 0b85486374b13d330c4ff4e4cf04e81a64d6cc18 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Fri, 9 Aug 2019 09:37:52 -0400 Subject: [PATCH 5/5] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e2ce595..1d7bd94 100644 --- a/setup.py +++ b/setup.py @@ -162,5 +162,5 @@ # 'sample=sample:main', # ], # }, - # zip_safe=False, + zip_safe=False, )