Skip to content

Commit

Permalink
Merge pull request #6535 from bashtage/fix-setup
Browse files Browse the repository at this point in the history
MAINT: Restrict to Python 3.5+
  • Loading branch information
bashtage committed Feb 21, 2020
2 parents a672662 + 2d05296 commit 160911a
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 28 deletions.
1 change: 1 addition & 0 deletions docs/source/release/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Release Notes
.. toctree::
:maxdepth: 1

version0.11.1
version0.11
version0.10.2
version0.10.1
Expand Down
27 changes: 0 additions & 27 deletions docs/source/release/verion0.11.1.rst

This file was deleted.

42 changes: 42 additions & 0 deletions docs/source/release/version0.11.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
:orphan:

==============
Release 0.11.1
==============

Release summary
===============
This is a bug release.

Development summary and credits
===============================

Besides receiving contributions for new and improved features and for bugfixes,
important contributions to general maintenance for this release came from

* Kerby Shedden
* Josef Perktold
* Alex Lyttle
* Chad Fulton
* Kevin Sheppard
* Wouter De Coster

Merged Pull Requests
--------------------

The following Pull Requests were merged since the last release:

* :pr:`6433`: TST/BUG: use reset_randomstate
* :pr:`6438`: BUG: Change default optimizer for glm/ridge and make it user-settable
* :pr:`6453`: DOC: Fix the version that appears in the documentaion
* :pr:`6456`: DOC: Send log to dev/null/
* :pr:`6461`: MAINT: correcting typo
* :pr:`6465`: MAINT: Avoid noise in f-pvalue
* :pr:`6469`: MAINT: Fix future warnings
* :pr:`6470`: BUG: fix tukey-hsd for 1 pvalue
* :pr:`6471`: MAINT: Fix issue with ragged array
* :pr:`6474`: BLD: Use pip on Azure
* :pr:`6515`: BUG: fix #6511
* :pr:`6520`: BUG: fix GAM for 1-dim exog_linear
* :pr:`6534`: MAINT: Relax tolerance on test that occasionally fails
* :pr:`6535`: MAINT: Restrict to Python 3.5+
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
Expand Down Expand Up @@ -344,7 +345,8 @@ def is_pure(self):
setup_requires=SETUP_REQUIRES,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
zip_safe=False
zip_safe=False,
python_requires=">=3.5",
)

# Clean-up copied files
Expand Down

2 comments on commit 160911a

@stevenlis
Copy link

Choose a reason for hiding this comment

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

The lasted version is not found on conda-forge

@bashtage
Copy link
Member Author

Choose a reason for hiding this comment

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

Latest version 0.11.1 is on conda forge

https://anaconda.org/conda-forge/statsmodels

Please sign in to comment.