Skip to content

Commit 3286623

Browse files
authored
Add support for 3.10 (#150)
1 parent 1db3507 commit 3286623

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ workflows:
2121
- test-linux:
2222
name: Python 3.9
2323
docker-image: cimg/python:3.9
24+
- test-linux:
25+
name: Python 3.10
26+
docker-image: cimg/python:3.10
2427
- test-windows:
2528
name: Windows Python 3
2629
py3: true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
## Supported Python versions
1515

16-
This version of the LaunchDarkly SDK is compatible with Python 3.5 through 3.9. It is tested with the most recent patch releases of those versions. Python versions 2.7 to 3.4 are no longer supported.
16+
This version of the LaunchDarkly SDK is compatible with Python 3.5 through 3.10. It is tested with the most recent patch releases of those versions. Python versions 2.7 to 3.4 are no longer supported.
1717

1818
## Getting started
1919

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ def run(self):
6666
'Programming Language :: Python :: 3.5',
6767
'Programming Language :: Python :: 3.6',
6868
'Programming Language :: Python :: 3.7',
69+
'Programming Language :: Python :: 3.8',
70+
'Programming Language :: Python :: 3.9',
71+
'Programming Language :: Python :: 3.10',
6972
'Topic :: Software Development',
7073
'Topic :: Software Development :: Libraries',
7174
],

0 commit comments

Comments
 (0)