-
Notifications
You must be signed in to change notification settings - Fork 83
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
debugtoolbar code/docs say it requires pyramid>=1.2dev but actually requires 1.4 #183
Comments
Since test_toolbar does not pass its requests through a Pyramid router (it generates request objects and feeds them to a tween), |
We've pinned the toolbar to |
This was referenced Feb 26, 2017
This was referenced Mar 12, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
invoke_subrequest
was introduced in 1.4:http://docs.pylonsproject.org/docs/pyramid/en/latest/narr/subrequest.html#invoking-a-subrequest
It gets used here:
https://github.com/Pylons/pyramid_debugtoolbar/blob/master/pyramid_debugtoolbar/toolbar.py#L200
Looks like it was introduced prior to 2.0:
9c47df3
Readme & docs say 1.2a1:
https://github.com/Pylons/pyramid_debugtoolbar/blame/master/README.rst#L7
https://github.com/Pylons/pyramid_debugtoolbar/blame/master/docs/index.rst#L19
Setup says >=1.2dev:
https://github.com/Pylons/pyramid_debugtoolbar/blob/master/setup.py#L27
The text was updated successfully, but these errors were encountered: