Skip to content

Commit 573e4ed

Browse files
cl-parsonsmax/sooulix
andauthored
support python 3.13, limit icalendar version < 6
See: #1389 Co-authored-by: max/sooulix <[email protected]>
1 parent abdd5e1 commit 573e4ed

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ not released yet
3333
* NEW support for color theme, command, and formatter plugins
3434
* FIX an issue where ikhal would forget changes to time or date fields if you
3535
left the field with page up/down or meta+enter
36+
* NEW support python 3.13
3637

3738
0.11.3
3839
======

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ classifiers = [
2020
"Programming Language :: Python :: 3.10",
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
2324
"Topic :: Communications",
2425
"Topic :: Utilities",
2526
]
26-
requires-python = ">=3.8,<3.13"
27+
requires-python = ">=3.8,<3.14"
2728
dependencies = [
2829
"click>=3.2",
2930
"click_log>=0.2.0",
30-
"icalendar>=4.0.3",
31+
"icalendar>=4.0.3,<6.0.0",
3132
"urwid>=2.6.15",
3233
"pyxdg",
3334
"pytz",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py38,py39,py310,py311,py312}-tests,py39-tests-{pytz2018.7,pytz_latest}
2+
envlist = {py38,py39,py310,py311,py312,py313}-tests,py39-tests-{pytz2018.7,pytz_latest}
33
skip_missing_interpreters = True
44

55
[testenv]
@@ -24,6 +24,7 @@ python =
2424
3.10: py310
2525
3.11: py311
2626
3.12: py312
27+
3.13: py313
2728

2829
[testenv:docs]
2930
allowlist_externals = make

0 commit comments

Comments
 (0)