Skip to content

Commit

Permalink
feat: add support for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
joanise committed Feb 7, 2025
1 parent 110eaad commit a32764b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions everyvoice/wizard/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ def __setitem__(self, key, value):
def __delitem__(self, key):
super().__delitem__(self.convert_key(key))

def get(self, key, default=None):
return super().get(self.convert_key(key), default)


class NodeMixinWithNavigation(NodeMixin):
"""A NodeMixin subclass that allows for navigation between siblings
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ maintainers = [
{ name = "Samuel Larkin", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.10, <3.12"
requires-python = ">=3.10, <3.13"
keywords = ["TTS", "CLI"]
classifiers = [
"Intended Audience :: Developers",
Expand All @@ -35,6 +35,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python",
"Programming Language :: Unix Shell",
Expand Down

0 comments on commit a32764b

Please sign in to comment.