Skip to content

Commit c7730fa

Browse files
committed
Pylint now depends on isort and the current version of isort has a binary dependancy on clikit, so either we have to pin isort to an earlier version or prevent checking that pylint-django can be installed with --no-binary (since, presumably, isort and therefore pylint now require binary package dependencies)
1 parent 21487b4 commit c7730fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ echo "..... Trying to install the new tarball inside a virtualenv"
6969
# note: installs with the optional dependency to verify this is still working
7070
virtualenv .venv/test-tarball
7171
source .venv/test-tarball/bin/activate
72-
pip install --no-binary :all: -f dist/ pylint_django[with_django]
72+
pip install -f dist/ pylint_django[with_django]
7373
pip freeze | grep Django
7474
deactivate
7575
rm -rf .venv/

0 commit comments

Comments
 (0)