From 0d1f799e26a85903ddfbb0a5d775b8cfd39d0f6f Mon Sep 17 00:00:00 2001 From: "Felix M. Riese" Date: Sat, 8 Jul 2023 16:39:39 +0200 Subject: [PATCH] CHANGE version to 1.3.0 --- CHANGELOG.rst | 7 +++++-- CITATION.cff | 2 +- LICENSE | 2 +- docs/conf.py | 4 ++-- guide/README.md | 2 +- guide/package.json | 2 +- meta.yaml | 4 ++-- setup.py | 2 +- susi/__init__.py | 2 +- 9 files changed, 15 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 06ae0d9..ab1cc63 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,9 +1,12 @@ Change Log ========== -[1.2.3] - xxxx-xx-xx +[1.3.0] - 2023-07-08 -------------------- -- +- [ADDED] Official support for Python 3.11. +- [FIXED] Quantization error axis bug. +- [REMOVED] Official support for Python 3.7 (deprecated in 2023). It might + still work, but will not be maintained on this version. [1.2.2] - 2021-12-11 -------------------- diff --git a/CITATION.cff b/CITATION.cff index 8164f40..59e9df5 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ authors: given-names: Felix M. orcid: https://orcid.org/0000-0003-0596-9585 title: "SuSi: SUpervised Self-organIzing maps in Python" -version: 1.2.2 +version: 1.3.0 doi: "10.5281/zenodo.2609130" date-released: 2021-12-11 repository-code: https://github.com/felixriese/susi diff --git a/LICENSE b/LICENSE index c0e7b5e..e2cee11 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright (c) 2019-2022 Felix M. Riese. +Copyright (c) 2019-2023 Felix M. Riese. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/docs/conf.py b/docs/conf.py index 164898f..e5aa0bf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,13 +21,13 @@ # -- Project information ----------------------------------------------------- project = "SuSi" -copyright = "2019-2022 Felix M. Riese" +copyright = "2019-2023 Felix M. Riese" author = "Felix M. Riese" # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "1.2.2" +release = "1.3.0" # -- General configuration --------------------------------------------------- diff --git a/guide/README.md b/guide/README.md index e762a65..2c9c1e3 100644 --- a/guide/README.md +++ b/guide/README.md @@ -12,7 +12,7 @@ features: details: Support for unsupervised clustering and visualization, semi-supervised and supervised classification and regression. - title: Built-in visualization details: Present your data with SuSi through built-in plotting scripts and example notebooks. -footer: Copyright © 2019-2022 Felix M. Riese +footer: Copyright © 2019-2023 Felix M. Riese # search: false --- diff --git a/guide/package.json b/guide/package.json index 678e5a9..4535140 100755 --- a/guide/package.json +++ b/guide/package.json @@ -1,6 +1,6 @@ { "name": "susi-self-organizing-maps-with-python", - "version": "1.2.2", + "version": "1.3.0", "description": "Susi is a Python package for unsupervised, supervised and semi-supervised self-organizing maps (SOM).", "main": "index.js", "authors": { diff --git a/meta.yaml b/meta.yaml index 337efed..0621c98 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,5 +1,5 @@ {% set name = "susi" %} -{% set version = "1.2.2" %} +{% set version = "1.3.0" %} package: @@ -26,7 +26,7 @@ requirements: - scikit-learn >=0.21.1 - scipy >=1.3.1 - tqdm >=4.45.0 - - matplotlib-base >=3.3.0 + - matplotlib-base >=3.7.2 - seaborn >=0.11.0 - pandas >=1.1.5 diff --git a/setup.py b/setup.py index d3134c0..caa46ee 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setuptools.setup( name="susi", - version="1.2.2", + version="1.3.0", author="Felix M. Riese", author_email="github@felixriese.de", description=( diff --git a/susi/__init__.py b/susi/__init__.py index 2cbdab7..3a405c1 100644 --- a/susi/__init__.py +++ b/susi/__init__.py @@ -4,7 +4,7 @@ self-organizing maps (SOM). """ -__version__ = "1.2.2" +__version__ = "1.3.0" from .SOMClassifier import SOMClassifier from .SOMClustering import SOMClustering