Skip to content

Commit

Permalink
Merge pull request #8485 from bashtage/0.13.3-release-note
Browse files Browse the repository at this point in the history
DOC: Add release note for 0.13.3
  • Loading branch information
bashtage committed Oct 31, 2022
2 parents 1ca366f + 687d723 commit 932ed64
Show file tree
Hide file tree
Showing 37 changed files with 3,442 additions and 2,398 deletions.
2 changes: 1 addition & 1 deletion docs/source/release/index.rst
Expand Up @@ -7,6 +7,7 @@ Release Notes
.. toctree::
:maxdepth: 1

version0.13.3
version0.13.2
version0.13.1
version0.13.0
Expand All @@ -25,4 +26,3 @@ Release Notes

For an overview of changes that occurred previous to the 0.5.0 release
see :ref:`old_changes`.

82 changes: 82 additions & 0 deletions docs/source/release/version0.13.3.rst
@@ -0,0 +1,82 @@
:orphan:

==============
Release 0.13.3
==============

Release summary
===============

statsmodels is using github to store the updated documentation. Two version are available:

- `Stable <https://www.statsmodels.org/>`_, the latest release
- `Development <https://www.statsmodels.org/devel/>`_, the latest build of the main branch

**Warning**

API stability is not guaranteed for new features, although even in
this case changes will be made in a backwards compatible way if
possible. The stability of a new feature depends on how much time it
was already in statsmodels main and how much usage it has already
seen. If there are specific known problems or limitations, then they
are mentioned in the docstrings.

Stats
-----
**Issues Closed**: 79

**Pull Requests Merged**: 7


The Highlights
==============
This is a Python 3.11 compatability release only. There are no significant
new features or bug fixes.

Submodules
----------

``maintenance``
~~~~~~~~~~~~~~~
- Backport Python 3.11 to 0.13.x branch (:pr:`8484`)

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

- Chad Fulton
- Brock Mendel
- Peter Quackenbush
- Kerby Shedden
- Kevin Sheppard

and the general maintainer and code reviewer

- Josef Perktold

Additionally, many users contributed by participation in github issues and
providing feedback.

Thanks to all of the contributors for the 0.13.3 release (based on git log):

- Ewout Ter Hoeven
- Kevin Sheppard


These lists of names are automatically generated based on git log, and may not
be complete.

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

The following Pull Requests were merged since the last release:

- :pr:`8470`: TST: Relax tolerance on tests that marginally fail
- :pr:`8473`: MAINT: Future fixes for 0.13
- :pr:`8474`: MAINT: Try to fix object issue
- :pr:`8479`: MAINT: Update doc build instructions
- :pr:`8480`: MAINT: Update doc build instructions
- :pr:`8483`: DOC: Fix warnings
- :pr:`8484`: MAINT: Backport Python 3.11 to 0.13.x branch
1 change: 1 addition & 0 deletions requirements-dev.txt
Expand Up @@ -7,6 +7,7 @@ oldest-supported-numpy>=2022.4.18
matplotlib>=3
colorama
joblib
Jinja2
# Remove due to failures on azure CI
# cvxopt; os_name != "win32"

Expand Down
9 changes: 8 additions & 1 deletion statsmodels/multivariate/tests/test_factor.py
Expand Up @@ -215,7 +215,14 @@ def test_getframe_smoke():
assert_(isinstance(df, pd.DataFrame))

lds = res.get_loadings_frame(style='strings', decimals=3, threshold=0.3)
lds.to_latex()
# Old implementation that warns
if PD_LT_1_4:
with warnings.catch_warnings():
warnings.simplefilter("always")
lds.to_latex()
else:
# Smoke test using new style to_latex
lds.style.to_latex()

# The Styler option require jinja2, skip if not available
try:
Expand Down
4 changes: 2 additions & 2 deletions statsmodels/sandbox/distributions/__init__.py
@@ -1,4 +1,4 @@
'''temporary location for enhancements to scipy.stats
"""temporary location for enhancements to scipy.stats
includes
^^^^^^^^
Expand All @@ -20,4 +20,4 @@
mixed status : from not-working to well-tested
'''
"""

0 comments on commit 932ed64

Please sign in to comment.