Skip to content
Open
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.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ conda install pip
* `pandas`
* `scipy`
* `sphinx`
* `sphinx_rtd_theme==0.5.2`
* `sphinx_rtd_theme==2.0.0`
* `metpy`
* `netCDF4`
* `astropy`
Expand Down
8 changes: 2 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,7 @@
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# to fix long table-wdith problem
html_context = {
'css_files': [
'_static/theme_overrides.css', # override wide tables in RTD theme
],
}
html_css_files = ['theme-overrides.css'] # override wide tables in RTD theme

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
Expand Down Expand Up @@ -194,4 +190,4 @@
# -- Options for todo extension ----------------------------------------------

# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = True
todo_include_todos = True
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ def readme():
packages=['instrupy'],
scripts=[
],
install_requires=['shapely', 'numpy', 'pandas', 'scipy', 'lowtran==2.4.1', 'sphinx', 'sphinx_rtd_theme==0.5.2', 'netCDF4','metpy','astropy','deepdiff']
install_requires=['shapely', 'numpy', 'pandas', 'scipy', 'lowtran==2.4.1', 'sphinx', 'sphinx_rtd_theme==2.0.0', 'netCDF4','metpy','astropy','deepdiff']
)