From 94012b05c38153f34ce8f7822d649c06ec8093c5 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 11 Nov 2018 23:08:01 -0500 Subject: [PATCH] Screw it; go 3.7 for ``datetime.fromisoformat()`` --- .travis.yml | 12 ++++++------ setup.py | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9dc836dc..0f6967bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,10 @@ language: python -python: - - '3.6' - # setup.py reading README breaks this? - # - pypy - # no pandas support - # - nightly + +matrix: + include: + - python: 3.7 + dist: xenial + sudo: required before_install: - sudo apt-get -qq update diff --git a/setup.py b/setup.py index 3ba37c91..4a673a8c 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ setup( 'questrade': ['asks'], }, tests_require=['pytest'], - python_requires=">=3.6", + python_requires=">=3.7", # literally for ``datetime.datetime.fromisoformat``... keywords=["async", "trading", "finance", "quant", "charting"], classifiers=[ 'Development Status :: 3 - Alpha',