diff --git a/.github/workflows/zulip-tests.yml b/.github/workflows/zulip-tests.yml index 921fd33c..7337af9d 100644 --- a/.github/workflows/zulip-tests.yml +++ b/.github/workflows/zulip-tests.yml @@ -32,7 +32,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2 diff --git a/zulip/setup.py b/zulip/setup.py index c8056672..9138338a 100755 --- a/zulip/setup.py +++ b/zulip/setup.py @@ -45,6 +45,7 @@ setup( "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], python_requires=">=3.8", url="https://www.zulip.org/", diff --git a/zulip_bots/setup.py b/zulip_bots/setup.py index adb2dae5..3fe124a9 100644 --- a/zulip_bots/setup.py +++ b/zulip_bots/setup.py @@ -37,6 +37,7 @@ setup( "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], python_requires=">=3.8", url="https://www.zulip.org/", diff --git a/zulip_botserver/setup.py b/zulip_botserver/setup.py index 27559dc7..d606aaa2 100644 --- a/zulip_botserver/setup.py +++ b/zulip_botserver/setup.py @@ -25,6 +25,7 @@ setup( "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], python_requires=">=3.8", url="https://www.zulip.org/",