-
Notifications
You must be signed in to change notification settings - Fork 11
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
Fix compatibility with Pyramid 1.8 #23
Conversation
Previously those views were registered for both I noticed one other thing which is that Pylons/pyramid#2757 dropped pyramid_zcml/pyramid_zcml/tests/test_units.py Line 1353 in 5d162f1
|
I've switched to use It seems like the fallback import Python 2.6 fails with Pyramid 1.8, but works with older Pyramid versions. PyPy3 currently fails, because virtualenv or pip is incompatible with it, because it's currently only supporting Python 3.2. |
FWIW Python 2.6 support was dropped in Pyramid 1.7, and we dropped PyPy3 support until it supports Python 3.4+. We dropped Python 3.2 in Pyramid 1.7, and Python 3.3 in Pyramid 1.8. Pyramid 1.8 is tested and supported on Python 2.7, Python 3.4, Python 3.5, Python 3.6, and PyPy. |
I have a branch now that tests everything with travis: https://github.com/fschulze/pyramid_zcml/tree/tox-travis |
@fschulze Apparently I ended up with pypi ownership so I've given you pypi access if you wish to cut a release of pyramid_zcml. You are also now an admin on this repo if you wish to manage merge requests. |
This fixes #22, but there are 4 more test failures about derived_views which I don't understand yet.