Skip to content

Commit 9336086

Browse files
committed
python version to >=3.8 from 3.6 in setup.py and readme
1 parent 54fa5be commit 9336086

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414
"[python]": {
1515
"editor.defaultFormatter": "ms-python.black-formatter"
1616
},
17-
"python.formatting.provider": "none"
17+
"python.formatting.provider": "none",
18+
"python.testing.pytestEnabled": false
1819
}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The Python package is documented on the [official Roboflow documentation site](h
1515

1616
## 💻 Installation
1717

18-
You will need to have `Python 3.6` or higher set up to use the Roboflow Python package.
18+
You will need to have `Python 3.8` or higher set up to use the Roboflow Python package.
1919

2020
Run the following command to install the Roboflow Python package:
2121

roboflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from roboflow.core.workspace import Workspace
1313
from roboflow.util.general import write_line
1414

15-
__version__ = "1.1.6"
15+
__version__ = "1.1.7"
1616

1717

1818
def check_key(api_key, model, notebook, num_retries=0):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
"License :: OSI Approved :: Apache Software License",
3535
"Operating System :: OS Independent",
3636
],
37-
python_requires=">=3.6",
37+
python_requires=">=3.8",
3838
)

0 commit comments

Comments
 (0)