Skip to content

Commit

Permalink
Add support for Python 3.11 (#281)
Browse files Browse the repository at this point in the history
Co-authored-by: davfsa <davfsa@gmail.com>
  • Loading branch information
PerchunPak and davfsa committed Oct 29, 2022
1 parent f58a994 commit 9937494
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/source/changelogs/v2-changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Below are all the changelogs for the stable versions of hikari-lightbulb (versio

----

Version 2.3.0
=============

- Add support for Python 3.11.

Version 2.2.4
=============

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def parse_requirements_file(path):
zip_safe=False,
install_requires=parse_requirements_file("requirements.txt"),
extras_require={"crontrigger": parse_requirements_file("crontrigger_requirements.txt")},
python_requires=">=3.8.0,<3.11",
python_requires=">=3.8.0,<3.12",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
Expand All @@ -80,6 +80,7 @@ def parse_requirements_file(path):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
Expand Down

1 comment on commit 9937494

@PerchunPak
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And what about release?

Please sign in to comment.