Skip to content

Commit 5f25030

Browse files
committed
Remove EOL Python 3.8 support, add Python 3.13
1 parent 2507a70 commit 5f25030

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: .github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
15+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1616
os: [ubuntu-latest]
1717
steps:
1818
- name: Check out source repository

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Please see the [contribution guidelines](https://github.com/websocket-client/web
2727
## Installation
2828

2929
You can use `pip install websocket-client` to install, or `pip install -e .`
30-
to install from a local copy of the code. This module is tested on Python 3.8+.
30+
to install from a local copy of the code. This module is tested on Python 3.9+.
3131

3232
There are several optional dependencies that can be installed to enable
3333
specific websocket-client features.

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
license="Apache-2.0",
3838
url="https://github.com/websocket-client/websocket-client.git",
3939
download_url="https://github.com/websocket-client/websocket-client/releases",
40-
python_requires=">=3.8",
40+
python_requires=">=3.9",
4141
extras_require={
4242
"test": ["pytest", "websockets"],
4343
"optional": ["python-socks", "wsaccel"],
@@ -47,11 +47,11 @@
4747
"Development Status :: 4 - Beta",
4848
"License :: OSI Approved :: Apache Software License",
4949
"Programming Language :: Python :: 3",
50-
"Programming Language :: Python :: 3.8",
5150
"Programming Language :: Python :: 3.9",
5251
"Programming Language :: Python :: 3.10",
5352
"Programming Language :: Python :: 3.11",
5453
"Programming Language :: Python :: 3.12",
54+
"Programming Language :: Python :: 3.13",
5555
"Operating System :: MacOS :: MacOS X",
5656
"Operating System :: POSIX",
5757
"Operating System :: Microsoft :: Windows",

0 commit comments

Comments
 (0)