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

Bugfix for Sphinx3.0 #48

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Installation

Install via pip::

$ pip install guzzle_sphinx_theme
$ python -m pip install guzzle_sphinx_theme

or if you have the code checked out locally::

Expand Down
2 changes: 1 addition & 1 deletion guzzle_sphinx_theme/guzzle_sphinx_theme/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{# Do this so that bootstrap is included before the main css file #}
{%- block htmltitle %}
{% set script_files = script_files + ["_static/myscript.js"] %}
<script type="text/javascript" src="{{ pathto('_static/myscript.js', 1) }}"></script>
<!-- Licensed under the Apache 2.0 License -->
<link rel="stylesheet" type="text/css" href="{{ pathto('_static/fonts/open-sans/stylesheet.css', 1) }}" />
<!-- Licensed under the SIL Open Font License -->
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Sphinx>1.3
Sphinx>3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
url='https://github.com/guzzle/guzzle_sphinx_theme',
packages=['guzzle_sphinx_theme'],
include_package_data=True,
install_requires=['Sphinx>1.3'],
install_requires=['Sphinx>3'],
license="MIT",
classifiers=(
'Development Status :: 3 - Alpha',
Expand Down