Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin Jinja2 and MarkupSafe to fix issues building on Focal #211

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 6 additions & 5 deletions wheelhouse.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,17 @@ pip>=18.1,<19.0;python_version < '3.8'
pip<22.1;python_version >= '3.8'
# pin Jinja2, PyYAML and MarkupSafe to the last versions supporting python 3.5
# for trusty
Jinja2==2.10;python_version >= '3.0' and python_version <= '3.4' # py3 trusty
Jinja2==2.11;python_version == '2.7' or python_version == '3.5' # py27, py35
Jinja2;python_version >= '3.6' # py36 and on
Jinja2<2.11;python_version >= '3.0' and python_version <= '3.4' # py3 trusty
Jinja2<3.0;python_version == '2.7' or python_version == '3.5' # py27, py35 xenial
Jinja2<3.0;python_version >= '3.6' and python_version <= '3.8' # py36 bionic, py38 focal
Jinja2;python_version > '3.8'

PyYAML==5.2;python_version >= '3.0' and python_version <= '3.4' # py3 trusty
PyYAML<5.4;python_version == '2.7' or python_version >= '3.5' # all else

MarkupSafe<2.0.0;python_version < '3.6'
MarkupSafe<2.1.0;python_version == '3.6' # Just for python 3.6
MarkupSafe;python_version >= '3.7' # newer pythons
MarkupSafe<2.1.0;python_version >= '3.6' and python_version <= '3.8' # py36 bionic, py38 focal
MarkupSafe;python_version > '3.8'

setuptools<42;python_version < '3.8'
# https://github.com/juju-solutions/layer-basic/issues/201
Expand Down