Skip to content

Commit c1bfe7b

Browse files
committed
removal of 3.6 and addition of 3.9 to sdk
1 parent 16340b5 commit c1bfe7b

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
strategy:
1515
matrix:
1616
include:
17-
- python-version: 3.6
17+
- python-version: 3.7
1818
prod-key: LABELBOX_API_KEY
1919
staging-key: STAGING_LABELBOX_API_KEY
20-
- python-version: 3.7
20+
- python-version: 3.8
2121
prod-key: PROD_LABELBOX_API_KEY_2
2222
staging-key: STAGING_LABELBOX_API_KEY_2
23-
- python-version: 3.8
23+
- python-version: 3.9
2424
prod-key: PROD_LABELBOX_API_KEY_3
2525
staging-key: STAGING_LABELBOX_API_KEY_3
2626

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The Labelbox Python API offers a simple, user-friendly way to interact with the
1818

1919
## Requirements
2020

21-
- Use Python 3.6, 3.7 or 3.8
21+
- Use Python 3.7, 3.8 or 3.9
2222
- [Create an account](http://app.labelbox.com/)
2323
- [Generate an API key](https://labelbox.com/docs/api/getting-started#create_api_key)
2424

setup.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,8 @@
2020
url="https://labelbox.com",
2121
packages=setuptools.find_packages(),
2222
install_requires=[
23-
"backoff==1.10.0",
24-
"backports-datetime-fromisoformat==1.0.0; python_version < '3.7.0'",
25-
"dataclasses==0.7; python_version < '3.7.0'", "ndjson==0.3.1",
26-
"requests>=2.22.0", "google-api-core>=1.22.1", "pydantic>=1.8,<2.0",
27-
"tqdm"
23+
"backoff==1.10.0", "requests>=2.22.0", "google-api-core>=1.22.1",
24+
"pydantic>=1.8,<2.0", "tqdm"
2825
],
2926
extras_require={
3027
'data': [
@@ -37,10 +34,10 @@
3734
'Development Status :: 3 - Alpha',
3835
'License :: OSI Approved :: Apache Software License',
3936
'Programming Language :: Python :: 3',
40-
'Programming Language :: Python :: 3.6',
4137
'Programming Language :: Python :: 3.7',
4238
'Programming Language :: Python :: 3.8',
39+
'Programming Language :: Python :: 3.9',
4340
],
44-
python_requires='>=3.6',
41+
python_requires='>=3.7',
4542
keywords=["labelbox"],
4643
)

0 commit comments

Comments
 (0)