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

Replace sphinx-rtd-theme by furo #51

Merged
merged 1 commit into from
Nov 5, 2024
Merged
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
20 changes: 12 additions & 8 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,22 @@
History
=======

0.7.0 (2024-10-29)
UNRELEASED
----------
* Replaced `sphinx-rtd-theme` by [furo](https://github.com/pradyunsg/furo)

0.7.0 (2024-10-29)
------------------
* Add support django-import-export >= 4.2
* Removed support for django-import-export < 4.2
* Improve test coverage

0.6.1 (2024-10-04)
----------
------------------
* Update requirements version and internal naming

0.6.0 (2024-10-04)
----------
------------------
* Extend response of import job api
* Added support for django-import-export >= 4.0
* Removed support for django 3.2
Expand Down Expand Up @@ -55,11 +59,11 @@ History
* Use admin/import_export/ templates instead of copies in admin/import_export_extensions/
* Small improvements:

* Fix static folder name
* Fix invoke command to run celery
* Fix progress bar widget
* Rename filter_class to filterset_class
* Add cancel_job action for exporting
* Fix static folder name
* Fix invoke command to run celery
* Fix progress bar widget
* Rename filter_class to filterset_class
* Add cancel_job action for exporting
Comment on lines +62 to +66
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed from 4 to 2 spaces because furo converts it to quote


0.1.4 (2023-05-22)
------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/api_drf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ API (Rest Framework)
:type: ProgressInfoSerializer
:value: {"current": 0, "total": 0}

Shows current and total imported/exported values
Shows current and total imported/exported values
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Delete here one extra space because furo convert text to quote


.. autoclass:: import_export_extensions.api.ProgressInfoSerializer
:members:
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

# General information about the project.
project = "django-import-export-extensions"
copyright = "2022-2023, Saritasa"
copyright = "2022-2024, Saritasa"
author = "Saritasa"

# The language for content autogenerated by Sphinx. Refer to documentation
Expand All @@ -62,7 +62,7 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = "sphinx_rtd_theme"
html_theme = "furo"

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand Down
85 changes: 59 additions & 26 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ psycopg2-binary = "^2.9.9"
# https://www.sphinx-doc.org/en/master/
sphinx = "<9"
# Theme for documentation
# https://pypi.org/project/sphinx-rtd-theme/
sphinx-rtd-theme = ">=2,<4"
# https://github.com/pradyunsg/furo
furo = "^2024.8.6"

[tool.poetry.group.local.dependencies]
# A Python library for parsing and creating TOML
Expand Down