Skip to content

Commit

Permalink
prepare release (#2146)
Browse files Browse the repository at this point in the history
  • Loading branch information
OriolAbril authored Oct 24, 2022
1 parent 4556b57 commit d030d44
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 15 deletions.
13 changes: 2 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
# Change Log

## v0.x.x Unreleased

### New features

### Maintenance and fixes

### Deprecation

### Documentation

## v0.13.0 (2022 Oct 22)

### New features
Expand All @@ -30,13 +20,14 @@
* Skip compression for object dtype while creating a netcdf file ([2129](https://github.com/arviz-devs/arviz/pull/2129))
* Fix issue in dim generation when default dims are present in user inputed dims ([2138](https://github.com/arviz-devs/arviz/pull/2138))
* Save InferenceData level attrs to netcdf and zarr ([2131](https://github.com/arviz-devs/arviz/pull/2131))
* Update tests and docs for updated example data ([2137](https://github.com/arviz-devs/arviz/pull/2137))

### Deprecation
* Removed `fill_last`, `contour` and `plot_kwargs` arguments from `plot_pair` function ([2085](https://github.com/arviz-devs/arviz/pull/2085))

### Documentation
* Add translation overview to contributing guide ([2041](https://github.com/arviz-devs/arviz/pull/2041))

* Improve how to release page ([2144](https://github.com/arviz-devs/arviz/pull/2144))

## v0.12.1 (2022 May 12)
### New features
Expand Down
2 changes: 1 addition & 1 deletion arviz/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pylint: disable=wildcard-import,invalid-name,wrong-import-position
"""ArviZ is a library for exploratory analysis of Bayesian models."""
__version__ = "0.13.0dev1"
__version__ = "0.13.0"

import logging
import os
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
setuptools>=60.0.0
matplotlib>=3.5
numpy>=1.19.0
numpy>=1.20.0
scipy>=1.8.0
packaging
pandas>=1.4.0
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def get_version():
long_description=get_long_description(),
long_description_content_type="text/markdown",
include_package_data=True,
python_requires='>=3.7',
python_requires='>=3.8',
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Matplotlib",
Expand All @@ -67,9 +67,10 @@ def get_version():
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Mathematics",
Expand Down

0 comments on commit d030d44

Please sign in to comment.