Skip to content

Commit

Permalink
Disallow Python 3.13 from pyproject.toml:
Browse files Browse the repository at this point in the history
Upon testing with local virtual environments, a 'private' function in stdlib dataclasses, _create_fn, is not recognized by extant version of Python 3.13.
  • Loading branch information
ebb-earl-co committed Jul 20, 2024
1 parent a20505f commit 326b067
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ maintainers = [
]
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">= 3.8"
requires-python = ">3.7,<3.13"
classifiers=[
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
Expand All @@ -23,7 +23,6 @@ classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
Expand Down

0 comments on commit 326b067

Please sign in to comment.