Skip to content

DEPS: Unpin pydata-sphinx-theme #53029

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

Merged
merged 25 commits into from
May 11, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
f9f470e
DOC: migrate from sphinx-panels to sphinx-design
jorisvandenbossche Aug 27, 2021
4dd8141
Merge remote-tracking branch 'upstream/main' into docs-migrate-sphinx…
jorisvandenbossche Dec 2, 2022
344201d
update css for latest pydata-sphinx-theme
jorisvandenbossche Dec 2, 2022
4e3f51d
add sphinx-design to env
jorisvandenbossche Dec 2, 2022
be156b9
further fix css
jorisvandenbossche Dec 2, 2022
9bddaed
Merge branch 'main' into docs-migrate-sphinx-design
mroeschke Apr 26, 2023
92df06b
Convert panels to grid, address warning, remove panel dependency
mroeschke Apr 27, 2023
3090553
Try addressing failures
mroeschke Apr 27, 2023
a4a0353
Merge remote-tracking branch 'upstream/main' into docs-migrate-sphinx…
mroeschke Apr 28, 2023
31db3e1
Fix css
mroeschke Apr 28, 2023
0bb740d
Fix more css
mroeschke Apr 28, 2023
823ca97
Just use one comparison card class
mroeschke Apr 28, 2023
0bcd79d
Unpin pydata-sphinx-theme
mroeschke Apr 28, 2023
dbdfc38
Uncomment other workflows
mroeschke Apr 28, 2023
28dae97
address some warnings
mroeschke Apr 29, 2023
9c3c3fa
Merge remote-tracking branch 'upstream/main' into deps/pydata-sphinx-pin
mroeschke May 1, 2023
bd210bc
Revert "Uncomment other workflows"
mroeschke May 1, 2023
92bb29e
Change bath to json_url
mroeschke May 2, 2023
d0aea28
Change back to path
mroeschke May 2, 2023
c7a1eff
No /
mroeschke May 2, 2023
b844e6d
Merge remote-tracking branch 'upstream/main' into deps/pydata-sphinx-pin
mroeschke May 3, 2023
be96762
Change version
mroeschke May 3, 2023
3e9cbb0
Update doc/source/conf.py
mroeschke May 3, 2023
966585e
Merge branch 'main' into deps/pydata-sphinx-pin
mroeschke May 8, 2023
f122326
Merge branch 'main' into deps/pydata-sphinx-pin
mroeschke May 10, 2023
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
6 changes: 3 additions & 3 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,14 +237,14 @@

html_theme_options = {
"external_links": [],
"footer_items": ["pandas_footer", "sphinx-version"],
"footer_start": ["pandas_footer", "sphinx-version"],
"github_url": "https://github.com/pandas-dev/pandas",
"twitter_url": "https://twitter.com/pandas_dev",
"google_analytics_id": "UA-27880019-2",
"analytics": {"google_analytics_id": "UA-27880019-2"},
"logo": {"image_dark": "https://pandas.pydata.org/static/img/pandas_white.svg"},
"navbar_end": ["version-switcher", "theme-switcher", "navbar-icon-links"],
"switcher": {
"json_url": "/versions.json",
"json_url": "versions.json",
"version_match": switcher_version,
},
"icon_links": [
Expand Down
16 changes: 8 additions & 8 deletions web/pandas/versions.json → doc/source/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,41 @@
{
"name": "dev",
"version": "docs/dev",
"url": "/docs/dev/"
"url": "https://pandas.pydata.org/docs/dev/"
},
{
"name": "2.0 (stable)",
"version": "docs",
"url": "/docs/"
"url": "https://pandas.pydata.org/docs/"
},
{
"name": "1.5",
"version": "pandas-docs/version/1.5",
"url": "/pandas-docs/version/1.5/"
"url": "https://pandas.pydata.org/pandas-docs/version/1.5/"
},
{
"name": "1.4",
"version": "pandas-docs/version/1.4",
"url": "/pandas-docs/version/1.4/"
"url": "https://pandas.pydata.org/pandas-docs/version/1.4/"
},
{
"name": "1.3",
"version": "pandas-docs/version/1.3",
"url": "/pandas-docs/version/1.3/"
"url": "https://pandas.pydata.org/pandas-docs/version/1.3/"
},
{
"name": "1.2",
"version": "pandas-docs/version/1.2",
"url": "/pandas-docs/version/1.2/"
"url": "https://pandas.pydata.org/pandas-docs/version/1.2/"
},
{
"name": "1.1",
"version": "pandas-docs/version/1.1",
"url": "/pandas-docs/version/1.1/"
"url": "https://pandas.pydata.org/pandas-docs/version/1.1/"
},
{
"name": "1.0",
"version": "pandas-docs/version/1.0",
"url": "/pandas-docs/version/1.0/"
"url": "https://pandas.pydata.org/pandas-docs/version/1.0/"
}
]
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ dependencies:
- gitdb
- natsort # DataFrame.sort_values doctest
- numpydoc
- pydata-sphinx-theme<0.11
- pydata-sphinx-theme
- pytest-cython # doctest
- sphinx
- sphinx-design
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ gitpython
gitdb
natsort
numpydoc
pydata-sphinx-theme<0.11
pydata-sphinx-theme
pytest-cython
sphinx
sphinx-design
Expand Down