Skip to content

Commit 60bbdff

Browse files
authored
make patch release (#2323)
1 parent 3fc5962 commit 60bbdff

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

CHANGELOG.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
# Change Log
22

3-
## v0.x.x Unreleased
4-
5-
### New features
3+
## v0.17.1 (2024 Mar 13)
64

75
### Maintenance and fixes
86
- Fix deprecations introduced in latest pandas and xarray versions, and prepare for numpy 2.0 ones ([2315](https://github.com/arviz-devs/arviz/pull/2315)))
97
- Refactor ECDF code ([2311](https://github.com/arviz-devs/arviz/pull/2311))
108
- Fix `plot_forest` when Numba is installed ([2319](https://github.com/arviz-devs/arviz/pull/2319))
119

12-
### Deprecation
13-
14-
### Documentation
15-
1610
## v0.17.0 (2023 Dec 22)
1711

1812
### New features

arviz/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pylint: disable=wildcard-import,invalid-name,wrong-import-position
22
"""ArviZ is a library for exploratory analysis of Bayesian models."""
3-
__version__ = "0.18.0.dev0"
3+
__version__ = "0.17.1"
44

55
import logging
66
import os

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def get_version():
5858
long_description=get_long_description(),
5959
long_description_content_type="text/markdown",
6060
include_package_data=True,
61-
python_requires=">=3.10",
61+
python_requires=">=3.9",
6262
classifiers=[
6363
"Development Status :: 4 - Beta",
6464
"Framework :: Matplotlib",
@@ -67,6 +67,7 @@ def get_version():
6767
"License :: OSI Approved :: Apache Software License",
6868
"Programming Language :: Python",
6969
"Programming Language :: Python :: 3",
70+
"Programming Language :: Python :: 3.9",
7071
"Programming Language :: Python :: 3.10",
7172
"Programming Language :: Python :: 3.11",
7273
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)