From f276acf8e9b3886f5aac8d31beffece252506d6b Mon Sep 17 00:00:00 2001 From: Felipe Alex Hofmann Date: Thu, 5 Nov 2020 11:23:31 -0600 Subject: [PATCH] Updated docs --- .travis.yml | 1 - README.md | 2 +- setup.py | 3 +-- tox.ini | 3 +-- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index f177f8cb6..00b6e48b1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,6 @@ python: - 3.8 - 3.7 - 3.6 - - 3.5 # Command to install dependencies install: pip install -U tox-travis codecov diff --git a/README.md b/README.md index 0b7a255b5..ea9c35fdf 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ we develop a new model called CTGAN. Several major differences make CTGAN outper ## Requirements -**CTGAN** has been developed and tested on [Python 3.5, 3.6 and 3.7](https://www.python.org/downloads/) +**CTGAN** has been developed and tested on [Python 3.6, 3.7 and 3.8](https://www.python.org/downloads/) ## Install from PyPI diff --git a/setup.py b/setup.py index 9ea04be3f..fe86fee0c 100644 --- a/setup.py +++ b/setup.py @@ -67,7 +67,6 @@ 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', @@ -91,7 +90,7 @@ keywords='ctgan CTGAN', name='ctgan', packages=find_packages(include=['ctgan', 'ctgan.*']), - python_requires='>=3.5,<3.9', + python_requires='>=3.6,<3.9', setup_requires=setup_requires, test_suite='tests', tests_require=tests_require, diff --git a/tox.ini b/tox.ini index 6dff57dad..b0259e62e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{35,36,37,38} lint, docs +envlist = py{36,37,38} lint, docs [travis] @@ -7,7 +7,6 @@ python = 3.8: py38 3.7: py37, docs, lint 3.6: py36 - 3.5: py35 [testenv]