Skip to content

Commit

Permalink
release 1.5.0 (#1901)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Reed authored Feb 14, 2022
1 parent be550c7 commit e86c353
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 43 deletions.
17 changes: 13 additions & 4 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,18 @@
Release Notes
-------------

Future Release
==============
.. Future Release
==============
* Enhancements
* Fixes
* Changes
* Documentation Changes
* Testing Changes
.. Thanks to the following people for contributing to this release:
v1.5.0 Feb 14, 2022
===================
.. warning::
Featuretools may not support Python 3.7 in next non-bugfix release.

Expand Down Expand Up @@ -34,7 +44,7 @@ Future Release
* Updated deep feature synthesis and feature serialization tests to use new primitive files (:pr:`1861`)

Thanks to the following people for contributing to this release:
:user:`dvreed77`, :user:`gsheni`, :user:`jeff-hernandez`, :user:`thehomebrewnerd`, :user:`tamargrey`, :user:`tuethan1999`, :user:`jacobboney`, :user:`rwedge`
:user:`dvreed77`, :user:`gsheni`, :user:`jacobboney`, :user:`jeff-hernandez`, :user:`rwedge`, :user:`tamargrey`, :user:`thehomebrewnerd`, :user:`tuethan1999`

Breaking Changes
++++++++++++++++
Expand Down Expand Up @@ -62,7 +72,6 @@ v1.4.0 Jan 10, 2022

Thanks to the following people for contributing to this release:
:user:`davesque`, :user:`gsheni`, :user:`rwedge`, :user:`thehomebrewnerd`


v1.3.0 Dec 2, 2021
==================
Expand Down
2 changes: 1 addition & 1 deletion featuretools/tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "1.4.0"
assert __version__ == "1.5.0"
2 changes: 1 addition & 1 deletion featuretools/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.4.0'
__version__ = "1.5.0"
70 changes: 33 additions & 37 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,53 +3,49 @@
from setuptools import find_packages, setup

dirname = path.abspath(path.dirname(__file__))
with open(path.join(dirname, 'README.md')) as f:
with open(path.join(dirname, "README.md")) as f:
long_description = f.read()

extras_require = {
'tsfresh': ['featuretools-tsfresh-primitives >= 1.0.0'],
'update_checker': ['alteryx-open-src-update-checker >= 2.0.0'],
'nlp_primitives': ['nlp-primitives[complete] >= 2.0.0'],
'koalas': open('koalas-requirements.txt').readlines(),
'autonormalize': ['autonormalize >= 1.0.2'],
"tsfresh": ["featuretools-tsfresh-primitives >= 1.0.0"],
"update_checker": ["alteryx-open-src-update-checker >= 2.0.0"],
"nlp_primitives": ["nlp-primitives[complete] >= 2.0.0"],
"koalas": open("koalas-requirements.txt").readlines(),
"autonormalize": ["autonormalize >= 1.0.2"],
}
extras_require['complete'] = sorted(set(sum(extras_require.values(), [])))
extras_require["complete"] = sorted(set(sum(extras_require.values(), [])))

setup(
name='featuretools',
version='1.4.0',
name="featuretools",
version="1.5.0",
packages=find_packages(),
description='a framework for automated feature engineering',
url='https://featuretools.com',
license='BSD 3-clause',
author='Feature Labs, Inc.',
author_email='[email protected]',
description="a framework for automated feature engineering",
url="https://featuretools.com",
license="BSD 3-clause",
author="Feature Labs, Inc.",
author_email="[email protected]",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
],
install_requires=open('requirements.txt').readlines(),
python_requires='>=3.7, <4',
install_requires=open("requirements.txt").readlines(),
python_requires=">=3.7, <4",
extras_require=extras_require,
keywords='feature engineering data science machine learning',
keywords="feature engineering data science machine learning",
include_package_data=True,
entry_points={
'console_scripts': [
'featuretools = featuretools.__main__:cli'
]
},
entry_points={"console_scripts": ["featuretools = featuretools.__main__:cli"]},
long_description=long_description,
long_description_content_type='text/markdown'
long_description_content_type="text/markdown",
)

0 comments on commit e86c353

Please sign in to comment.