Skip to content

Commit 3b5104f

Browse files
authored
Merge pull request #55 from felixriese/version143
Prepare release v1.4.3
2 parents a0c5067 + 919efd8 commit 3b5104f

12 files changed

Lines changed: 16 additions & 16 deletions

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
default_stages: [commit]
1+
default_stages: [pre-commit]
22
fail_fast: true
33
default_language_version:
44
python: python3
55

66
repos:
77
- repo: https://github.com/pre-commit/pre-commit-hooks
8-
rev: v4.5.0
8+
rev: v5.0.0
99
hooks:
1010
- id: no-commit-to-branch
1111
args: ['--branch', 'main']
@@ -14,7 +14,7 @@ repos:
1414
- id: detect-private-key
1515
- id: check-merge-conflict
1616
- repo: https://github.com/psf/black
17-
rev: 24.3.0
17+
rev: 24.10.0
1818
hooks:
1919
- id: black
2020
language_version: python3.11
@@ -24,7 +24,7 @@ repos:
2424
hooks:
2525
- id: isort
2626
- repo: https://github.com/pycqa/flake8
27-
rev: 7.0.0
27+
rev: 7.1.0
2828
hooks:
2929
- id: flake8
3030
args: ["--ignore=E501,W503"]

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Change Log
22
==========
33

4-
[1.4.3] - XXXX-XX-XX
4+
[1.4.3] - 2025-01-12
55
--------------------
66
- [ADDED] Support for `scikit-learn>=1.6` because of breaking changes.
77

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors:
55
given-names: Felix M.
66
orcid: https://orcid.org/0000-0003-0596-9585
77
title: "SuSi: SUpervised Self-organIzing maps in Python"
8-
version: 1.4.2
8+
version: 1.4.3
99
doi: "10.5281/zenodo.2609130"
1010
date-released: 2021-12-11
1111
repository-code: https://github.com/felixriese/susi

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2019-2024 Felix M. Riese.
3+
Copyright (c) 2019-2025 Felix M. Riese.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
-r test-requirements.txt
44

55
mypy==1.11.1
6-
pre-commit==3.8.0
6+
pre-commit==4.0.1

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
# -- Project information -----------------------------------------------------
2222

2323
project = "SuSi"
24-
copyright = "2019-2024 Felix M. Riese"
24+
copyright = "2019-2025 Felix M. Riese"
2525
author = "Felix M. Riese"
2626

2727
# The short X.Y version
2828
version = ""
2929
# The full version, including alpha/beta/rc tags
30-
release = "1.4.2"
30+
release = "1.4.3"
3131

3232

3333
# -- General configuration ---------------------------------------------------

guide/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ features:
1212
details: Support for unsupervised clustering and visualization, semi-supervised and supervised classification and regression.
1313
- title: Built-in visualization
1414
details: Present your data with SuSi through built-in plotting scripts and example notebooks.
15-
footer: Copyright © 2019-2024 Felix M. Riese
15+
footer: Copyright © 2019-2025 Felix M. Riese
1616
# search: false
1717

1818
---

guide/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "susi-self-organizing-maps-with-python",
3-
"version": "1.4.2",
3+
"version": "1.4.3",
44
"description": "Susi is a Python package for unsupervised, supervised and semi-supervised self-organizing maps (SOM).",
55
"main": "index.js",
66
"authors": {

meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "susi" %}
2-
{% set version = "1.4.2" %}
2+
{% set version = "1.4.3" %}
33

44

55
package:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setuptools.setup(
1414
name="susi",
15-
version="1.4.2",
15+
version="1.4.3",
1616
author="Felix M. Riese",
1717
author_email="github@felixriese.de",
1818
description=(

0 commit comments

Comments
 (0)