Skip to content

Commit

Permalink
MNT bump to version 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhiningLiu1998 committed Jun 14, 2024
1 parent 6a2cf16 commit 4571e52
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
9 changes: 9 additions & 0 deletions docs/source/release_history.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Release History
***************


Version 0.2.2 (2024.06)
=========================

Maintenance:

- Bump dependency version: scikit-learn to ``1.5.0``, pandas to ``2.1.1``, seaborn to ``0.13.2``.
- Fix numerous Errors and Warnings appeared in the CI.

Version 0.2.1 (2023.07)
=========================

Expand Down
3 changes: 2 additions & 1 deletion imbens/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
``imbalanced-ensemble`` is a set of python-based ensemble learning methods for
dealing with class-imbalanced classification problems in machine learning.
"""

# Based on NiLearn, imblearn package
# License: simplified BSD, MIT

Expand All @@ -22,4 +23,4 @@
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#

__version__ = "0.2.1"
__version__ = "0.2.2"
17 changes: 8 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
here = os.path.abspath(os.path.dirname(__file__))
try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = '\n' + f.read()
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = "\n" + f.read()
except FileNotFoundError:
LONG_DESCRIPTION = DESCRIPTION

Expand All @@ -37,11 +37,11 @@
MAINTAINER_EMAIL = "[email protected]"
URL = "https://github.com/ZhiningLiu1998/imbalanced-ensemble"
PROJECT_URLS = {
'Documentation': 'https://imbalanced-ensemble.readthedocs.io/',
'Source': 'https://github.com/ZhiningLiu1998/imbalanced-ensemble',
'Tracker': 'https://github.com/ZhiningLiu1998/imbalanced-ensemble/issues',
'Changelog': 'https://imbalanced-ensemble.readthedocs.io/en/latest/release_history.html',
'Download': 'https://pypi.org/project/imbalanced-ensemble/#files',
"Documentation": "https://imbalanced-ensemble.readthedocs.io/",
"Source": "https://github.com/ZhiningLiu1998/imbalanced-ensemble",
"Tracker": "https://github.com/ZhiningLiu1998/imbalanced-ensemble/issues",
"Changelog": "https://imbalanced-ensemble.readthedocs.io/en/latest/release_history.html",
"Download": "https://pypi.org/project/imbalanced-ensemble/#files",
}
LICENSE = "MIT"
VERSION = __version__
Expand All @@ -57,7 +57,6 @@
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -97,7 +96,7 @@
version=VERSION,
project_urls=PROJECT_URLS,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
long_description_content_type="text/markdown",
zip_safe=False, # the package can run out of an .egg file
classifiers=CLASSIFIERS,
packages=find_packages(),
Expand Down

0 comments on commit 4571e52

Please sign in to comment.