Skip to content

Commit

Permalink
Drop Python 3.6 support (#57)
Browse files Browse the repository at this point in the history
* Update tests.yml

* Update setup.py
  • Loading branch information
gsheni authored Apr 30, 2021
1 parent 4f539dc commit 832c13f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.6", "3.7", "3.8"]
python_version: ["3.7", "3.8"]
featuretools_version: ["Release", "Main"]
steps:
- name: Set up python ${{ matrix.python_version }}
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.6", "3.7", "3.8"]
python_version: ["3.7", "3.8"]
steps:
- name: Set up python ${{ matrix.python_version }}
uses: actions/setup-python@v2
Expand All @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.6", "3.7", "3.8"]
python_version: ["3.7", "3.8"]
featuretools_version: ["Release", "Main"]
steps:
- name: Set up python ${{ matrix.python_version }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.6", "3.7", "3.8"]
python_version: ["3.7", "3.8"]
steps:
- name: Set up python ${{ matrix.python_version }}
uses: actions/setup-python@v2
Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@
version='1.1.0',
author='Feature Labs, Inc.',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
license='BSD 3-clause',
url='http://www.featurelabs.com/',
install_requires=open('requirements.txt').readlines(),
Expand All @@ -27,7 +34,7 @@
zip_safe=False,
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.6',
python_requires='>=3.7, <4',
extras_require=extras_require,
entry_points={
'featuretools_plugin': [
Expand Down

0 comments on commit 832c13f

Please sign in to comment.