Skip to content

Commit

Permalink
Python 3.7 is EOL, remove support
Browse files Browse the repository at this point in the history
  • Loading branch information
engn33r committed Jun 30, 2023
1 parent d91583c commit bd506ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest]
steps:
- name: Check out source repository
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Please see the [contribution guidelines](https://github.com/websocket-client/web
## Installation

You can use either `python3 setup.py install` or `pip3 install websocket-client`
to install. This module is tested on Python 3.7+.
to install. This module is tested on Python 3.8+.

There are several optional dependencies that can be installed to enable
specific websocket-client features.
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
license="Apache-2.0",
url="https://github.com/websocket-client/websocket-client.git",
download_url='https://github.com/websocket-client/websocket-client/releases',
python_requires='>=3.7',
python_requires='>=3.8',
extras_require={
"test": ["websockets"],
"optional": ["python-socks", "wsaccel"],
Expand All @@ -47,7 +47,6 @@
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit bd506ad

Please sign in to comment.