Skip to content

Commit

Permalink
Merge pull request sdv-dev#80 from sdv-dev/drop-py35
Browse files Browse the repository at this point in the history
Drop Python3.5
  • Loading branch information
fealho authored Nov 5, 2020
2 parents fe2cb37 + f276acf commit 15f6a0b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ python:
- 3.8
- 3.7
- 3.6
- 3.5

# Command to install dependencies
install: pip install -U tox-travis codecov
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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,
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
[tox]
envlist = py{35,36,37,38} lint, docs
envlist = py{36,37,38} lint, docs


[travis]
python =
3.8: py38
3.7: py37, docs, lint
3.6: py36
3.5: py35


[testenv]
Expand Down

0 comments on commit 15f6a0b

Please sign in to comment.