Skip to content

DOC: Add doc for v0.4.0 #314

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

Merged
merged 1 commit into from
May 9, 2017
Merged
Show file tree
Hide file tree
Changes from all 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
32 changes: 32 additions & 0 deletions docs/source/whatsnew/v0.4.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.. _whatsnew_040:

v0.4.0 (???)
-------------------------

This is a major release from 0.3.0 and includes new features and a number of bug fixes.

Highlights include:

.. contents:: What's new in v0.4.0
:local:
:backlinks: none

.. _whatsnew_040.enhancements:

New features
~~~~~~~~~~~~

Other enhancements
^^^^^^^^^^^^^^^^^^

.. _whatsnew_040.bug_fixes:

Bug Fixes
~~~~~~~~~

.. _whatsnew_040.api_breaking:

Backwards incompatible API changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Support has been dropped for Python 2.6 and 3.4 (:issue:`313`)
- Support has been dropped for `pandas` versions before 0.17.0 (:issue:`313`)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def readme():
return f.read()

INSTALL_REQUIRES = (
['pandas', 'requests>=2.3.0', 'requests-file', 'requests-ftp']
['pandas>=0.17.0', 'requests>=2.3.0', 'requests-file', 'requests-ftp']
)

setup(
Expand All @@ -47,8 +47,8 @@ def readme():
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
],
keywords='data',
Expand Down