mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Use uncompiled version of pep508checker
This ensures that it will work when running across different Python versions.
This commit is contained in:
+1
-1
@@ -546,7 +546,7 @@ def check():
|
||||
click.echo(crayons.yellow('Checking PEP 508 requirements...'))
|
||||
|
||||
# Run the PEP 508 checker in the virtualenv.
|
||||
c = delegator.run('{0} {1}'.format(which('python'), pep508checker.__file__))
|
||||
c = delegator.run('{0} {1}'.format(which('python'), pep508checker.__file__.rstrip('cd')))
|
||||
results = json.loads(c.out)
|
||||
|
||||
# Load the pipfile.
|
||||
|
||||
Reference in New Issue
Block a user