Skip to content

Commit

Permalink
support python 3.13, limit icalendar version < 6 (pimutils#1361)
Browse files Browse the repository at this point in the history
  • Loading branch information
max/sooulix committed Jan 26, 2025
1 parent a0e3fd1 commit eb72594
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ not released yet
* NEW support for color theme, command, and formatter plugins
* FIX an issue where ikhal would forget changes to time or date fields if you
left the field with page up/down or meta+enter
* NEW support python 3.13

0.11.3
======
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ classifiers = [
"Topic :: Communications",
"Topic :: Utilities",
]
requires-python = ">=3.8,<3.13"
requires-python = ">=3.8,<3.14"
dependencies = [
"click>=3.2",
"click_log>=0.2.0",
"icalendar>=4.0.3",
"icalendar>=4.0.3,<6.0.0",
"urwid>=2.6.15",
"pyxdg",
"pytz",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {py38,py39,py310,py311,py312}-tests,py39-tests-{pytz2018.7,pytz_latest}
envlist = {py38,py39,py310,py311,py312,py313}-tests,py39-tests-{pytz2018.7,pytz_latest}
skip_missing_interpreters = True

[testenv]
Expand All @@ -24,6 +24,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[testenv:docs]
whitelist_externals = make
Expand Down

0 comments on commit eb72594

Please sign in to comment.