Skip to content

Commit

Permalink
Merge pull request Nasdaq#5 from Nasdaq/BRAND-6/bump-supported-python…
Browse files Browse the repository at this point in the history
…-versions

BRAND-6/bump-supported-python-versions
  • Loading branch information
ericvautour-quandl authored Nov 16, 2021
2 parents 44e60b7 + 37cf937 commit 63b979a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Nasdaq Data Link Python Client

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+.
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+.

## Installation

Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import os
import sys

if sys.version_info[:2] < (3, 5):
if sys.version_info[:2] < (3, 7):
raise ImportError("""
This version of Nasdaq Data Link no longer supports python versions less than 3.5.0. If you're
This version of Nasdaq Data Link no longer supports python versions less than 3.7.0. If you're
reading this message your pip and/or setuptools are outdated. Please run the following to
update them:
Expand Down Expand Up @@ -72,14 +72,14 @@
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
],
install_requires=INSTALL_REQUIRES,
tests_require=TEST_REQUIRES,
python_requires='>= 3.5',
python_requires='>= 3.7',
test_suite="nose.collector",
packages=PACKAGES
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py3.5,py3.6,py3.7,py3.8
envlist = py3.7,py3.8,py3.9,py3.10

[testenv]
commands =
Expand Down

0 comments on commit 63b979a

Please sign in to comment.