Skip to content

Commit

Permalink
Support python 3.13 (#729)
Browse files Browse the repository at this point in the history
* docs: Document process for updating Python versions

* docs: Update CHANGES.rst for Python 3.13 compatibility

* remove comment in wrong release

* Format documentation

---------

Co-authored-by: Nicco Kunzmann <niccokunzmann@rambler.ru>
  • Loading branch information
mohammedfirdouss and niccokunzmann authored Oct 16, 2024
1 parent 5b974d9 commit 903f3dd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
4 changes: 1 addition & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Changelog

Minor changes:

- ...
- Test compatibility with Python 3.13

Breaking changes:

Expand All @@ -26,7 +26,6 @@ Bug fixes:
New features:

- Added ``Event.end``, ``Event.start``, ``Event.dtstart``, and ``Event.dtend`` attributes. See `Issue 662 <https://github.com/collective/icalendar/issues/662>`_.
- Test compatibility with Python 3.13

Bug fixes:

Expand Down Expand Up @@ -452,7 +451,6 @@ Bug fixes:

- Use ``vText`` as default type, when convert recurrence definition to ical string. [kam193]


4.0.5 (2020-03-21)
------------------

Expand Down
13 changes: 13 additions & 0 deletions docs/maintenance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,16 @@ This section contains useful links for maintainers and collaborators:

- `Future of icalendar, looking for maintainer #360 <https://github.com/collective/icalendar/discussions/360>`__
- `Comment on the Plone tests running with icalendar <https://github.com/collective/icalendar/pull/447#issuecomment-1277643634>`__

Updating Python Versions
------------------------

When adding support for a new Python version or removing support for an old one, the following files need to be updated:

1. ``.github/workflows/tests.yml``: Add or remove the Python version from the test matrix.
2. ``tox.ini``: Update the ``envlist`` to include or remove the Python version.
3. ``pyproject.toml``: Update the ``requires-python`` line and the ``classifiers`` list.
4. ``README.rst``: Update the compatibility information.
5. ``docs/maintenance.rst``: Update this list if any new files need to be modified.

Remember to test the changes thoroughly and update any documentation that mentions supported Python versions.

0 comments on commit 903f3dd

Please sign in to comment.