We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I tested your App and discovered some issues:
broken Link: https://waffle.io/uralbash/pyramid_pages
in routes.py
old: if pyramid_version >= pkg_resources.SetuptoolsVersion('1.6a1'): new: if pyramid_version >= pkg_resources.parse_version('1.6a1'):
in pyramid_pages_example Line 30ff
#from zope.sqlalchemy import ZopeTransactionExtension from zope.sqlalchemy import register
in pyramid_pages_example Line 131ff
old: fixtures = json.loads(file.read(), encoding='utf-8') new: fixtures = json.loads(file.read())
After this changes I could start the exampel with python 3.9.
Best regards
Peter
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tested your App and discovered some issues:
broken Link: https://waffle.io/uralbash/pyramid_pages
in routes.py
old: if pyramid_version >= pkg_resources.SetuptoolsVersion('1.6a1'):
new: if pyramid_version >= pkg_resources.parse_version('1.6a1'):
in pyramid_pages_example Line 30ff
#from zope.sqlalchemy import ZopeTransactionExtension
from zope.sqlalchemy import register
in pyramid_pages_example Line 131ff
old: fixtures = json.loads(file.read(), encoding='utf-8')
new: fixtures = json.loads(file.read())
After this changes I could start the exampel with python 3.9.
Best regards
Peter
The text was updated successfully, but these errors were encountered: