Skip to content

Commit

Permalink
Remove EOL Python versions. Support for Python >= 3.9
Browse files Browse the repository at this point in the history
Support latest versions for tests.
  • Loading branch information
mberdyshev authored and Michael Berdyshev committed Jan 8, 2025
1 parent 1be938c commit 05b3301
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7","3.8", "3.9", "3.10.8", "3.11"]
python-version: ["3.9", "3.10.8", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Method return values are sent back as RPC responses, which the other side can wa
- As seen at <a href="https://www.youtube.com/watch?v=KP7tPeKhT3o" target="_blank">PyCon IL 2021</a> and <a href="https://www.youtube.com/watch?v=IuMZVWEUvGs" target="_blank">EuroPython 2021</a>


Supports and tested on Python >= 3.7
Supports and tested on Python >= 3.9
## Installation 🛠️
```
pip install fastapi_websocket_rpc
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_requirements(env=""):
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI",
],
python_requires=">=3.7",
python_requires=">=3.9",
install_requires=get_requirements(),
extras_require={
"websocket-client": ["websocket-client>=1.1.0"],
Expand Down

0 comments on commit 05b3301

Please sign in to comment.