Skip to content

Commit

Permalink
Merge pull request #67 from stephenhky/develop
Browse files Browse the repository at this point in the history
Release 0.4.4
  • Loading branch information
stephenhky authored Jan 10, 2025
2 parents 30bae77 + ce82de6 commit 7c3be74
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ jobs:
docker:
- image: cimg/python:3.12

py313:
<<: *shared
docker:
- image: cimg/python:3.13

workflows:
version: 2
Expand All @@ -56,3 +60,4 @@ workflows:
- py310
- py311
- py312
- py313
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ the codes of TDA separately, and name this package `mogutda`.

## Prerequisite

It runs under Python 3.8, 3.9, 3.10, and 3.11.
It runs under Python 3.8, 3.9, 3.10, 3.11, 3.12, and 3.13.

## Simple Tutorial: Simplicial Complex

Expand Down Expand Up @@ -90,6 +90,7 @@ the simplicial complexes are, and how homologies are defined:

## News

* 01/09/2025: `mogutda` 0.4.4 released.
* 09/19/2024: `mogutda` 0.4.3 released.
* 07/16/2024: `mogutsa` 0.4.2 released.
* 11/23/2023: `mogutda` 0.4.1 released.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = u'0.4'
# The full version, including alpha/beta/rc tags.
release = u'0.4.3'
release = u'0.4.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ draw some insights from them. A lot of machine learning algorithms deal
with distances, which are extremely useful, but they miss the
information the data may carry from their geometry.

`mogutda` runs in Python 3.8, 3.9, 3.10, 3.11, and 3.12.
`mogutda` runs in Python 3.8, 3.9, 3.10, 3.11, 3.12, and 3.13.

Contributors:

Expand Down
1 change: 1 addition & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
News
====

* 01/09/2025: `mogutda` 0.4.4 released.
* 09/19/2024: `mogutda` 0.4.3 released.
* 07/16/2024: `mogutda` 0.4.2 released.
* 11/23/2023: `mogutda` 0.4.1 released.
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mogutda"
version = "0.4.3"
version = "0.4.4"
authors = [
{name = "Kwan Yuet Stephen Ho", email = "stephenhky@yahoo.com.hk"}
]
Expand All @@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
Expand All @@ -39,4 +40,4 @@ packages = ["mogutda"]
zip-safe = false

[project.optional-dependencies]
test = ["unittest"]
test = ["unittest", "pytest"]

0 comments on commit 7c3be74

Please sign in to comment.