14
0

- update to 2024.09.03:

* Fix support for Python 3.9.
  * Fix running sphinx-autobuild via entry point scripts.
  * Run sphinx-build in a subprocess to mitigate autdoc issues.
  * Support the -M 'make mode' option for sphinx-build.
  * Add a missing dependency on watchfiles.
  * Adopt Ruff in place of flake8 and black.
  * Drop python-livereload.
  * Add starlette and uvicorn as dependencies.
  * Implement hot reloading via websockets.
  * Run Sphinx rebuilds in an asynchronous executor.
  * Declare support for Python 3.9, 3.10, 3.11, and 3.12
  * Drop support for Python 3.8 and earlier
  * Allow passing relative paths to --ignore
  * Support all valid sphinx-build options (except Make-mode)
  * Fix path issues on Windows
  * Differentiate pre-build command failures from Sphinx failures

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinx-autobuild?expand=0&rev=3
This commit is contained in:
2024-09-08 16:28:13 +00:00
committed by Git OBS Bridge
parent 79e44560c4
commit a3b3ce62b1
4 changed files with 45 additions and 19 deletions

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Sun Sep 8 16:21:06 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 2024.09.03:
* Fix support for Python 3.9.
* Fix running sphinx-autobuild via entry point scripts.
* Run sphinx-build in a subprocess to mitigate autdoc issues.
* Support the -M 'make mode' option for sphinx-build.
* Add a missing dependency on watchfiles.
* Adopt Ruff in place of flake8 and black.
* Drop python-livereload.
* Add starlette and uvicorn as dependencies.
* Implement hot reloading via websockets.
* Run Sphinx rebuilds in an asynchronous executor.
* Declare support for Python 3.9, 3.10, 3.11, and 3.12
* Drop support for Python 3.8 and earlier
* Allow passing relative paths to --ignore
* Support all valid sphinx-build options (except Make-mode)
* Fix path issues on Windows
* Differentiate pre-build command failures from Sphinx failures
-------------------------------------------------------------------
Mon Mar 6 13:04:27 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>