Skip to content

Commit 1526a91

Browse files
Merge pull request #318 from brendalf/fix/travis_pipeline
fix: travis pipeline
2 parents e346657 + a6260a5 commit 1526a91

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ include CONTRIBUTING.rst
33
include HISTORY.rst
44
include LICENSE
55
include README.rst
6+
include requirements.txt
7+
include requirements_dev.txt
68

79
recursive-include tests *
810
recursive-exclude * __pycache__

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
setup(
2525
author="Shankar Rao Pandala",
2626
author_email="[email protected]",
27-
python_requires=">=3.8",
27+
python_requires=">=3.6",
2828
classifiers=[
2929
"Development Status :: 2 - Pre-Alpha",
3030
"Intended Audience :: Developers",
3131
"License :: OSI Approved :: MIT License",
3232
"Natural Language :: English",
33-
"Programming Language :: Python :: 3.8",
33+
"Programming Language :: Python :: 3.6",
3434
],
3535
description="Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning",
3636
entry_points={"console_scripts": ["lazypredict=lazypredict.cli:main",],},

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
[tox]
2-
envlist = py27, py35, py36, py37, py38, flake8
2+
envlist = py36, py37, py38, flake8
33

44
[travis]
55
python =
66
3.8: py38
77
3.7: py37
88
3.6: py36
9-
3.5: py35
10-
2.7: py27
119

1210
[testenv:flake8]
1311
basepython = python

0 commit comments

Comments
 (0)