Skip to content

Commit 4716b12

Browse files
Fix (#119)
* update * update --------- Co-authored-by: Nathanael Perraudin <nathanael.perraudin@synthesia.io>
1 parent 7924874 commit 4716b12

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,11 @@ doc:
3838
uv run sphinx-build -b linkcheck -d doc/_build/doctrees doc doc/_build/linkcheck
3939

4040
dist: clean
41+
uv sync --all-extras
4142
uv build
4243
ls -lh dist/*
4344
uv run twine check dist/*
45+
@echo "The built packages are valid and can be uploaded successfully"
4446

4547
release: dist
4648
uv publish

pygsp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@
3737
graphs.Graph.plot.__func__.__doc__ = plotting._plot_graph.__doc__
3838
graphs.Graph.plot_spectrogram.__func__.__doc__ = plotting._plot_spectrogram.__doc__
3939

40-
__version__ = "0.6.0"
40+
__version__ = "0.6.1"
4141
__release_date__ = "2025-09-11"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "PyGSP"
7-
version = "0.6.0"
7+
version = "0.6.1"
88
description = "Graph Signal Processing in Python"
99
readme = "README.rst"
1010
requires-python = ">=3.8"
@@ -32,6 +32,7 @@ classifiers = [
3232
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
3536
]
3637

3738
dependencies = [

0 commit comments

Comments
 (0)