Skip to content
Closed
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
1 change: 0 additions & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,3 @@ python:
path: .
extra_requirements:
- doc

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand All @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
==============================
Expand Down
2 changes: 1 addition & 1 deletion tests/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down