Skip to content

Commit

Permalink
fix: Add Python 3.13 as supported version
Browse files Browse the repository at this point in the history
Closes #11
  • Loading branch information
Jan Beran committed Feb 3, 2025
1 parent fa5b653 commit 058611f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,17 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
]
dynamic = ['version']
dependencies = [
"windows-curses; platform_system=='Windows'"
"windows-curses; sys_platform == 'win32' and python_version < '3.13'",
# older versions does not support Python 3.13: https://github.com/zephyrproject-rtos/windows-curses/issues/69
"windows-curses>=2.4.1; sys_platform == 'win32' and python_version >= '3.13'",
]

[project.urls]
Homepage = "https://github.com/espressif/esp-idf-kconfig"

Expand Down

0 comments on commit 058611f

Please sign in to comment.