diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 91792981..d686310b 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -39,4 +39,3 @@ python: path: . extra_requirements: - doc - diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ed97980..da9308d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ In version 2.0, the requests library will be replaced with niquests or httpx. S ## [1.5.0] - [Unreleased] +### Fixed + +* Readthedocs integration has been repaired (https://github.com/python-caldav/caldav/pull/453 - but eventually the fix was introduced directly in the master branch) + ### Deprecated Python 3.7 is no longer tested - but it should work. Please file a bug report if it doesn't work. (Note that the caldav library pulls in many dependencies, and not all of them supports dead snakes). @@ -26,6 +30,7 @@ Python 3.7 is no longer tested - but it should work. Please file a bug report i #### Test framework +* Radicale tests have been broken for a while, but now it's fixed ... and github will be running those tests as well. https://github.com/python-caldav/caldav/pull/480 plus commits directly to the main branch. * Python 3.13 is officially supported by github user @ArtemIsmagilov in https://github.com/python-caldav/caldav/pull/454 * Functional test framework has been refactored in https://github.com/python-caldav/caldav/pull/450 * code for setting up and rigging down xandikos/radicale servers have been moved from `tests/test_caldav.py` to `tests/conf.py`. This allows for: diff --git a/docs/source/index.rst b/docs/source/index.rst index c43db7ab..853f4807 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -19,7 +19,8 @@ Project home The project currently lives on github, https://github.com/python-caldav/caldav - if you have problems using the library (including problems understanding the documentation), -please feel free to report it on the issue tracker there. +please feel free to report it on the issue tracker there or send email +to caldav@plann.no. Backward compatibility support ============================== diff --git a/tests/conf.py b/tests/conf.py index db3ac1d1..93e2bc2f 100644 --- a/tests/conf.py +++ b/tests/conf.py @@ -107,7 +107,7 @@ def setup_radicale(self): self.configuration.update( { "storage": {"filesystem_folder": self.serverdir.name}, - "auth": {"type": None}, + "auth": {"type": "none"}, } ) self.server = radicale.server