diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2020-03-31 21:55:00 +0900 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2020-04-20 16:19:49 +0000 |
commit | af057b6ab1a413776523660cafdd31c0dabfe5cd (patch) | |
tree | 74c598c8f7d8fa98921e6e188145719aaa09ba19 /src/buildstream/plugins | |
parent | 3d77f1583fd020ce5c18da1fa3c01d40784c2abd (diff) | |
download | buildstream-af057b6ab1a413776523660cafdd31c0dabfe5cd.tar.gz |
pip source plugin: Add support for python 3.8tristan/pip-source-3.8
For some reason, the pip source plugin appears to pass tests in master
when testing python 3.8 without this change, however it does not pass
tests without this change on the bst-1 branch.
Adding this change to master for consistency across branches for now,
and in the off chance that this fixes the pip source plugin in some
python 3.8 environments.
Diffstat (limited to 'src/buildstream/plugins')
-rw-r--r-- | src/buildstream/plugins/sources/pip.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buildstream/plugins/sources/pip.py b/src/buildstream/plugins/sources/pip.py index eac2f3d01..c3af0f9cf 100644 --- a/src/buildstream/plugins/sources/pip.py +++ b/src/buildstream/plugins/sources/pip.py @@ -89,6 +89,7 @@ _PYTHON_VERSIONS = [ "python3.5", "python3.6", "python3.7", + "python3.8", ] # List of allowed extensions taken from |