8000 Merge pull request #5 from Nasdaq/BRAND-6/bump-supported-python-versions · Nasdaq/data-link-python@63b979a · GitHub
[go: up one dir, main page]

Skip to content

Commit 63b979a

Browse files
Merge pull request #5 from Nasdaq/BRAND-6/bump-supported-python-versions
BRAND-6/bump-supported-python-versions
2 parents 44e60b7 + 37cf937 commit 63b979a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Nasdaq Data Link Python Client
22

3-
This is the official documentation for Nasdaq Data Link's Python Package. The package can be used to interact with the latest version of the [Nasdaq Data Link's RESTful API](https://docs.data.nasdaq.com/docs). This package is compatible with python v3.5+.
3+
This is the official documentation for Nasdaq Data Link's Python Package. The package can be used to interact with the latest version of the [Nasdaq Data Link's RESTful API](https://docs.data.nasdaq.com/docs). This package is compatible with python v3.7+.
44

55
## Installation
66

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import os
22
import sys
33

4-
if sys.version_info[:2] < ( 8000 3, 5):
4+
if sys.version_info[:2] < (3, 7):
55
raise ImportError("""
6-
This version of Nasdaq Data Link no longer supports python versions less than 3.5.0. If you're
6+
This version of Nasdaq Data Link no longer supports python versions less than 3.7.0. If you're
77
reading this message your pip and/or setuptools are outdated. Please run the following to
88
update them:
99
@@ -72,14 +72,14 @@
7272
"Intended Audience :: Developers",
7373
"License :: OSI Approved :: MIT License",
7474
"Operating System :: OS Independent",
75-
"Programming Language :: Python :: 3.5",
76-
"Programming Language :: Python :: 3.6",
7775
"Programming Language :: Python :: 3.7",
78-
"Programming Language :: Python :: 3.8"
76+
"Programming Language :: Python :: 3.8",
77+
"Programming Language :: Python :: 3.9",
78+
"Programming Language :: Python :: 3.10"
7979
],
8080
install_requires=INSTALL_REQUIRES,
8181
tests_require=TEST_REQUIRES,
82-
python_requires='>= 3.5',
82+
python_requires='>= 3.7',
8383
test_suite="nose.collector",
8484
packages=PACKAGES
8585
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# test suite on all supported python versions. To use it, "pip install tox"
44
# and then run "tox" from this directory.
55
[tox]
6-
envlist = py3.5,py3.6,py3.7,py3.8
6+
envlist = py3.7,py3.8,py3.9,py3.10
77

88
[testenv]
99
commands =

0 commit comments

Comments
 (0)
0