Skip to content

Commit 7b0815b

Browse files
committed
Support python 3.10
Stop supporting python 3.6 as its is not supported anymore
1 parent 478a262 commit 7b0815b

4 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 1
1111
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9]
12+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1313

1414
steps:
1515
- uses: actions/checkout@v1

README.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,17 @@ Installing
1414
Supported versions
1515
~~~~~~~~~~~~~~~~~~
1616

17-
:warning: Starting version ``1.11.0``, versions older that python ``3.6.0`` will not be supported anymore. This late version was released by the end 2016.
17+
:warning: Starting version ``1.11.0``, versions older than python ``3.6.0`` will not be supported anymore. This late version was released by the end 2016.
1818

1919
For those that are still using python 2.7, it won't be supported by the end of 2020 and all library shall stop supporting it.
2020

21+
:warning: Starting version ``1.25.0``, versions older than python ``3.7.0`` will not be supported anymore.
22+
23+
See `official documentation`_.
24+
25+
.. _`official documentation`: https://endoflife.date/python
26+
27+
2128
From pip
2229
~~~~~~~~
2330

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ websocket-client==0.54.0
55
PyYAML==5.4.1
66
requests>=2.5.0
77
polling2==0.4.6
8-
dataclasses==0.8; python_version < '3.7'

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,10 @@ def run(self):
7272
"Natural Language :: English",
7373
"Operating System :: OS Independent",
7474
"Programming Language :: Python :: 3",
75-
"Programming Language :: Python :: 3.6",
7675
"Programming Language :: Python :: 3.7",
76+
"Programming Language :: Python :: 3.8",
77+
"Programming Language :: Python :: 3.9",
78+
"Programming Language :: Python :: 3.10",
7779
"Topic :: Communications",
7880
],
7981
entry_points={

0 commit comments

Comments
 (0)