Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-22 20:39:48 -04:00
parent b3110c6e0e
commit 02df87af09
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "pytheory"
version = "0.6.0"
version = "0.6.1"
description = "Music Theory for Humans"
readme = "README.md"
license = "MIT"
+1 -1
View File
@@ -1,6 +1,6 @@
"""PyTheory: Music Theory for Humans."""
__version__ = "0.6.0"
__version__ = "0.6.1"
from .tones import Tone, Interval
from .systems import System, SYSTEMS
+1 -1
View File
@@ -2622,7 +2622,7 @@ def test_tension_empty():
def test_version():
import pytheory
assert pytheory.__version__ == "0.6.0"
assert pytheory.__version__ == "0.6.1"
def test_all_exports():