Skip to content

FIX change the way we check for a specific Python version in the test suite #1075

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion doc/whats_new/v0.12.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
.. _changes_0_12:

Version 0.12.2
==============

**March 31, 2024**

Changelog
---------

Bug fixes
.........

- Fix the way we check for a specific Python version in the test suite.
:pr:`1075` by :user:`Guillaume Lemaitre <glemaitre>`.

Version 0.12.1
==============

**In progress**
**March 31, 2024**

Changelog
---------
Expand Down
2 changes: 1 addition & 1 deletion imblearn/utils/tests/test_docstring.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(self, param_1, param_2):
self.param_2 = param_2


if sys.version_info.minor == "13":
if sys.version_info >= (3, 13):
func_docstring = _dedent_docstring(func_docstring)
cls_docstring = _dedent_docstring(cls_docstring)

Expand Down