Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Python 3.4 support #64

Merged
merged 6 commits into from
Jan 12, 2018
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ jobs:
- image: themattrix/tox
steps:
- checkout
- run: pyenv local 2.7.13 3.4.5 3.5.2 3.6.0
- run: pyenv local 2.7.13 3.5.2 3.6.0
- run: make installdeps
- run: make lint && tox && codecov
2 changes: 1 addition & 1 deletion docs/source/getting_started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Install
Pip
---

Featuretools is available for all versions of Python. The recommended way to install Featuretools is with pip
Featuretools is available for Python 2.7, 3.5, and 3.6. The recommended way to install Featuretools is with pip

``pip install featuretools``

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
numpy
numpy>=1.14.0
scipy>=1.0.0
pandas==0.20.3
pandas>=0.22.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think we can relax this a bit. any reason not to do pandas>=0.20.3?

s3fs>=0.1.2
tqdm>=4.19.2
toolz>=0.8.2
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def finalize_options(self):
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
skipsdist = {env:TOXBUILD:false}
envlist = clean,py27,py34,py35,py36
envlist = clean,py27,py35,py36

[testenv]
commands= py.test --cov=featuretools
Expand Down