Attempt to fix Python 3.6 build on Travis.

This commit is contained in:
Jason Madden 2017-06-22 10:40:50 -05:00
parent db12477bc3
commit d584d19ef0
No known key found for this signature in database
GPG Key ID: 349F84431A08B99E
2 changed files with 4 additions and 3 deletions

View File

@ -34,7 +34,7 @@ matrix:
- ENV=mysql
- OLDZODB=true
- python: pypy-5.4.1
- python: pypy-5.6.0
env: ENV=mysql
- python: 3.5

View File

@ -128,11 +128,12 @@ setup(
'ZODB >= 4.4.3',
'ZEO >= 4.3.1',
],
":python_full_version == '3.6.0rc1'": [
":python_full_version == '3.6.0rc1' or python_full_version == '3.6.2rc1'": [
# For some reason ZEO isn't getting installed
# on 3.6rc1/pip 9.0.1/tox 2.5.1. Looks like the
# on 3.6rc1/pip 9.0.1/tox 2.5.1, or 3.6.2rc1. Looks like the
# version selection <, >= environment markers aren't working.
# So we give a full version spec, which seems to work.
# We see this on Travis especially.
'ZODB >= 4.4.3',
'ZEO >= 4.3.1',
],