PyOctaveBand 2.1.0__tar.gz → 2.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyoctaveband-2.1.2/PKG-INFO +53 -0
- pyoctaveband-2.1.2/README.md +39 -0
- pyoctaveband-2.1.2/pyproject.toml +35 -0
- pyoctaveband-2.1.2/src/PyOctaveBand.egg-info/PKG-INFO +53 -0
- pyoctaveband-2.1.2/src/PyOctaveBand.egg-info/requires.txt +1 -0
- {pyoctaveband-2.1.0 → pyoctaveband-2.1.2}/src/pyoctaveband/__init__.py +2 -2
- pyoctaveband-2.1.0/PKG-INFO +0 -35
- pyoctaveband-2.1.0/README.md +0 -22
- pyoctaveband-2.1.0/pyproject.toml +0 -27
- pyoctaveband-2.1.0/src/PyOctaveBand.egg-info/PKG-INFO +0 -35
- pyoctaveband-2.1.0/src/PyOctaveBand.egg-info/requires.txt +0 -1
- {pyoctaveband-2.1.0 → pyoctaveband-2.1.2}/setup.cfg +0 -0
- {pyoctaveband-2.1.0 → pyoctaveband-2.1.2}/src/PyOctaveBand.egg-info/SOURCES.txt +0 -0
- {pyoctaveband-2.1.0 → pyoctaveband-2.1.2}/src/PyOctaveBand.egg-info/dependency_links.txt +0 -0
- {pyoctaveband-2.1.0 → pyoctaveband-2.1.2}/src/PyOctaveBand.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PyOctaveBand
|
|
3
|
+
Version: 2.1.2
|
|
4
|
+
Summary: PyOctaveBand is now phonometry. This transition package installs phonometry and keeps 'import pyoctaveband' working.
|
|
5
|
+
Author-email: José Manuel Requena Plens <mail@jmrp.io>
|
|
6
|
+
Project-URL: Homepage, https://jmrp.io/docs/phonometry
|
|
7
|
+
Project-URL: Author, https://jmrp.io/
|
|
8
|
+
Project-URL: Documentation, https://jmrplens.github.io/phonometry/
|
|
9
|
+
Classifier: Development Status :: 7 - Inactive
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Requires-Python: >=3.13
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: phonometry<4,>=3.0.0
|
|
14
|
+
|
|
15
|
+
# PyOctaveBand → phonometry
|
|
16
|
+
|
|
17
|
+
**PyOctaveBand has been renamed to [phonometry](https://pypi.org/project/phonometry/).**
|
|
18
|
+
|
|
19
|
+
This is a transition package: installing or upgrading `PyOctaveBand` installs
|
|
20
|
+
`phonometry` and provides a `pyoctaveband` module that re-exports the full,
|
|
21
|
+
unchanged API with a `FutureWarning`, which Python shows by default so the
|
|
22
|
+
migration notice actually reaches you. Your existing code keeps working, but
|
|
23
|
+
new code should use the new name:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pip install phonometry
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
I recommend `pip install phonometry[full]` instead, which pulls the optional
|
|
30
|
+
matplotlib, numba, reportlab and svglib and so enables every feature: the
|
|
31
|
+
`.plot()` figures, the normative PDF fiches of `.report()` (whose figure panel
|
|
32
|
+
needs matplotlib as well as reportlab and svglib) and the compiled kernel that
|
|
33
|
+
speeds up the `impulse` time weighting, which without numba still works on a
|
|
34
|
+
pure-Python kernel that is only slower. One caveat: numba declares
|
|
35
|
+
`numpy<2.5`, so `[full]` resolves NumPy below 2.5 while a plain install gets
|
|
36
|
+
the newest release; `phonometry[plot,report]` keeps NumPy current and only
|
|
37
|
+
gives up the compiled kernel.
|
|
38
|
+
|
|
39
|
+
```python
|
|
40
|
+
import phonometry # instead of: import pyoctaveband
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
The API is identical — renaming the import is a complete migration.
|
|
44
|
+
|
|
45
|
+
This package requires `phonometry>=3.0.0,<4`. The 3.x line is the one whose
|
|
46
|
+
API is the API of the last release under the old name, so that pin is what
|
|
47
|
+
makes the sentence above true: it cannot hand you a release that has retired a
|
|
48
|
+
name `pyoctaveband` promises. Later lines are reached by renaming the import,
|
|
49
|
+
which is the whole of the migration.
|
|
50
|
+
|
|
51
|
+
- Documentation: https://jmrplens.github.io/phonometry/
|
|
52
|
+
- Repository: https://github.com/jmrplens/phonometry
|
|
53
|
+
- Last release under the old name: [`pyoctaveband-v2` branch](https://github.com/jmrplens/phonometry/tree/pyoctaveband-v2)
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# PyOctaveBand → phonometry
|
|
2
|
+
|
|
3
|
+
**PyOctaveBand has been renamed to [phonometry](https://pypi.org/project/phonometry/).**
|
|
4
|
+
|
|
5
|
+
This is a transition package: installing or upgrading `PyOctaveBand` installs
|
|
6
|
+
`phonometry` and provides a `pyoctaveband` module that re-exports the full,
|
|
7
|
+
unchanged API with a `FutureWarning`, which Python shows by default so the
|
|
8
|
+
migration notice actually reaches you. Your existing code keeps working, but
|
|
9
|
+
new code should use the new name:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install phonometry
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
I recommend `pip install phonometry[full]` instead, which pulls the optional
|
|
16
|
+
matplotlib, numba, reportlab and svglib and so enables every feature: the
|
|
17
|
+
`.plot()` figures, the normative PDF fiches of `.report()` (whose figure panel
|
|
18
|
+
needs matplotlib as well as reportlab and svglib) and the compiled kernel that
|
|
19
|
+
speeds up the `impulse` time weighting, which without numba still works on a
|
|
20
|
+
pure-Python kernel that is only slower. One caveat: numba declares
|
|
21
|
+
`numpy<2.5`, so `[full]` resolves NumPy below 2.5 while a plain install gets
|
|
22
|
+
the newest release; `phonometry[plot,report]` keeps NumPy current and only
|
|
23
|
+
gives up the compiled kernel.
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
import phonometry # instead of: import pyoctaveband
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
The API is identical — renaming the import is a complete migration.
|
|
30
|
+
|
|
31
|
+
This package requires `phonometry>=3.0.0,<4`. The 3.x line is the one whose
|
|
32
|
+
API is the API of the last release under the old name, so that pin is what
|
|
33
|
+
makes the sentence above true: it cannot hand you a release that has retired a
|
|
34
|
+
name `pyoctaveband` promises. Later lines are reached by renaming the import,
|
|
35
|
+
which is the whole of the migration.
|
|
36
|
+
|
|
37
|
+
- Documentation: https://jmrplens.github.io/phonometry/
|
|
38
|
+
- Repository: https://github.com/jmrplens/phonometry
|
|
39
|
+
- Last release under the old name: [`pyoctaveband-v2` branch](https://github.com/jmrplens/phonometry/tree/pyoctaveband-v2)
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=82.0.1", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "PyOctaveBand"
|
|
7
|
+
version = "2.1.2"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="José Manuel Requena Plens", email="mail@jmrp.io" },
|
|
10
|
+
]
|
|
11
|
+
description = "PyOctaveBand is now phonometry. This transition package installs phonometry and keeps 'import pyoctaveband' working."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.13"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 7 - Inactive",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
]
|
|
18
|
+
dependencies = [
|
|
19
|
+
# Capped below the next major on purpose. This package exists to keep
|
|
20
|
+
# `import pyoctaveband` working, and it can only keep that promise while
|
|
21
|
+
# the resolved phonometry still exports what the last release under the
|
|
22
|
+
# old name exported. A major release is exactly where those names go, so
|
|
23
|
+
# an uncapped pin would silently upgrade a user into a phonometry that
|
|
24
|
+
# raises AttributeError for them. The migration path off 3.x is renaming
|
|
25
|
+
# the import, not a newer stub.
|
|
26
|
+
"phonometry>=3.0.0,<4",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
"Homepage" = "https://jmrp.io/docs/phonometry"
|
|
31
|
+
"Author" = "https://jmrp.io/"
|
|
32
|
+
"Documentation" = "https://jmrplens.github.io/phonometry/"
|
|
33
|
+
|
|
34
|
+
[tool.setuptools.packages.find]
|
|
35
|
+
where = ["src"]
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PyOctaveBand
|
|
3
|
+
Version: 2.1.2
|
|
4
|
+
Summary: PyOctaveBand is now phonometry. This transition package installs phonometry and keeps 'import pyoctaveband' working.
|
|
5
|
+
Author-email: José Manuel Requena Plens <mail@jmrp.io>
|
|
6
|
+
Project-URL: Homepage, https://jmrp.io/docs/phonometry
|
|
7
|
+
Project-URL: Author, https://jmrp.io/
|
|
8
|
+
Project-URL: Documentation, https://jmrplens.github.io/phonometry/
|
|
9
|
+
Classifier: Development Status :: 7 - Inactive
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Requires-Python: >=3.13
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: phonometry<4,>=3.0.0
|
|
14
|
+
|
|
15
|
+
# PyOctaveBand → phonometry
|
|
16
|
+
|
|
17
|
+
**PyOctaveBand has been renamed to [phonometry](https://pypi.org/project/phonometry/).**
|
|
18
|
+
|
|
19
|
+
This is a transition package: installing or upgrading `PyOctaveBand` installs
|
|
20
|
+
`phonometry` and provides a `pyoctaveband` module that re-exports the full,
|
|
21
|
+
unchanged API with a `FutureWarning`, which Python shows by default so the
|
|
22
|
+
migration notice actually reaches you. Your existing code keeps working, but
|
|
23
|
+
new code should use the new name:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pip install phonometry
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
I recommend `pip install phonometry[full]` instead, which pulls the optional
|
|
30
|
+
matplotlib, numba, reportlab and svglib and so enables every feature: the
|
|
31
|
+
`.plot()` figures, the normative PDF fiches of `.report()` (whose figure panel
|
|
32
|
+
needs matplotlib as well as reportlab and svglib) and the compiled kernel that
|
|
33
|
+
speeds up the `impulse` time weighting, which without numba still works on a
|
|
34
|
+
pure-Python kernel that is only slower. One caveat: numba declares
|
|
35
|
+
`numpy<2.5`, so `[full]` resolves NumPy below 2.5 while a plain install gets
|
|
36
|
+
the newest release; `phonometry[plot,report]` keeps NumPy current and only
|
|
37
|
+
gives up the compiled kernel.
|
|
38
|
+
|
|
39
|
+
```python
|
|
40
|
+
import phonometry # instead of: import pyoctaveband
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
The API is identical — renaming the import is a complete migration.
|
|
44
|
+
|
|
45
|
+
This package requires `phonometry>=3.0.0,<4`. The 3.x line is the one whose
|
|
46
|
+
API is the API of the last release under the old name, so that pin is what
|
|
47
|
+
makes the sentence above true: it cannot hand you a release that has retired a
|
|
48
|
+
name `pyoctaveband` promises. Later lines are reached by renaming the import,
|
|
49
|
+
which is the whole of the migration.
|
|
50
|
+
|
|
51
|
+
- Documentation: https://jmrplens.github.io/phonometry/
|
|
52
|
+
- Repository: https://github.com/jmrplens/phonometry
|
|
53
|
+
- Last release under the old name: [`pyoctaveband-v2` branch](https://github.com/jmrplens/phonometry/tree/pyoctaveband-v2)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
phonometry<4,>=3.0.0
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2026. Jose
|
|
1
|
+
# Copyright (c) 2026. Jose Manuel Requena Plens
|
|
2
2
|
"""Transition shim: PyOctaveBand has been renamed to phonometry.
|
|
3
3
|
|
|
4
4
|
Re-exports the complete phonometry API under the legacy ``pyoctaveband``
|
|
@@ -7,7 +7,7 @@ name so existing code keeps working. New code should ``import phonometry``.
|
|
|
7
7
|
|
|
8
8
|
import warnings
|
|
9
9
|
|
|
10
|
-
from phonometry import *
|
|
10
|
+
from phonometry import *
|
|
11
11
|
from phonometry import __all__, __version__ # noqa: F401
|
|
12
12
|
|
|
13
13
|
# FutureWarning (not DeprecationWarning): visible by default, so users of
|
pyoctaveband-2.1.0/PKG-INFO
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: PyOctaveBand
|
|
3
|
-
Version: 2.1.0
|
|
4
|
-
Summary: PyOctaveBand is now phonometry. This transition package installs phonometry and keeps 'import pyoctaveband' working.
|
|
5
|
-
Author-email: Jose Manuel Requena Plens <jmrplens@gmail.com>
|
|
6
|
-
Project-URL: Homepage, https://github.com/jmrplens/phonometry
|
|
7
|
-
Project-URL: Documentation, https://jmrplens.github.io/phonometry/
|
|
8
|
-
Classifier: Development Status :: 7 - Inactive
|
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
-
Requires-Python: >=3.13
|
|
11
|
-
Description-Content-Type: text/markdown
|
|
12
|
-
Requires-Dist: phonometry>=3.0.0
|
|
13
|
-
|
|
14
|
-
# PyOctaveBand → phonometry
|
|
15
|
-
|
|
16
|
-
**PyOctaveBand has been renamed to [phonometry](https://pypi.org/project/phonometry/).**
|
|
17
|
-
|
|
18
|
-
This is a transition package: installing or upgrading `PyOctaveBand` installs
|
|
19
|
-
`phonometry` and provides a `pyoctaveband` module that re-exports the full,
|
|
20
|
-
unchanged API with a `DeprecationWarning`. Your existing code keeps working,
|
|
21
|
-
but new code should use the new name:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
pip install phonometry
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
```python
|
|
28
|
-
import phonometry # instead of: import pyoctaveband
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
The API is identical — renaming the import is a complete migration.
|
|
32
|
-
|
|
33
|
-
- Documentation: https://jmrplens.github.io/phonometry/
|
|
34
|
-
- Repository: https://github.com/jmrplens/phonometry
|
|
35
|
-
- Last release under the old name: [`pyoctaveband-v2` branch](https://github.com/jmrplens/phonometry/tree/pyoctaveband-v2)
|
pyoctaveband-2.1.0/README.md
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# PyOctaveBand → phonometry
|
|
2
|
-
|
|
3
|
-
**PyOctaveBand has been renamed to [phonometry](https://pypi.org/project/phonometry/).**
|
|
4
|
-
|
|
5
|
-
This is a transition package: installing or upgrading `PyOctaveBand` installs
|
|
6
|
-
`phonometry` and provides a `pyoctaveband` module that re-exports the full,
|
|
7
|
-
unchanged API with a `DeprecationWarning`. Your existing code keeps working,
|
|
8
|
-
but new code should use the new name:
|
|
9
|
-
|
|
10
|
-
```bash
|
|
11
|
-
pip install phonometry
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
```python
|
|
15
|
-
import phonometry # instead of: import pyoctaveband
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
The API is identical — renaming the import is a complete migration.
|
|
19
|
-
|
|
20
|
-
- Documentation: https://jmrplens.github.io/phonometry/
|
|
21
|
-
- Repository: https://github.com/jmrplens/phonometry
|
|
22
|
-
- Last release under the old name: [`pyoctaveband-v2` branch](https://github.com/jmrplens/phonometry/tree/pyoctaveband-v2)
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["setuptools>=82.0.1", "wheel"]
|
|
3
|
-
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "PyOctaveBand"
|
|
7
|
-
version = "2.1.0"
|
|
8
|
-
authors = [
|
|
9
|
-
{ name="Jose Manuel Requena Plens", email="jmrplens@gmail.com" },
|
|
10
|
-
]
|
|
11
|
-
description = "PyOctaveBand is now phonometry. This transition package installs phonometry and keeps 'import pyoctaveband' working."
|
|
12
|
-
readme = "README.md"
|
|
13
|
-
requires-python = ">=3.13"
|
|
14
|
-
classifiers = [
|
|
15
|
-
"Development Status :: 7 - Inactive",
|
|
16
|
-
"License :: OSI Approved :: MIT License",
|
|
17
|
-
]
|
|
18
|
-
dependencies = [
|
|
19
|
-
"phonometry>=3.0.0",
|
|
20
|
-
]
|
|
21
|
-
|
|
22
|
-
[project.urls]
|
|
23
|
-
"Homepage" = "https://github.com/jmrplens/phonometry"
|
|
24
|
-
"Documentation" = "https://jmrplens.github.io/phonometry/"
|
|
25
|
-
|
|
26
|
-
[tool.setuptools.packages.find]
|
|
27
|
-
where = ["src"]
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: PyOctaveBand
|
|
3
|
-
Version: 2.1.0
|
|
4
|
-
Summary: PyOctaveBand is now phonometry. This transition package installs phonometry and keeps 'import pyoctaveband' working.
|
|
5
|
-
Author-email: Jose Manuel Requena Plens <jmrplens@gmail.com>
|
|
6
|
-
Project-URL: Homepage, https://github.com/jmrplens/phonometry
|
|
7
|
-
Project-URL: Documentation, https://jmrplens.github.io/phonometry/
|
|
8
|
-
Classifier: Development Status :: 7 - Inactive
|
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
-
Requires-Python: >=3.13
|
|
11
|
-
Description-Content-Type: text/markdown
|
|
12
|
-
Requires-Dist: phonometry>=3.0.0
|
|
13
|
-
|
|
14
|
-
# PyOctaveBand → phonometry
|
|
15
|
-
|
|
16
|
-
**PyOctaveBand has been renamed to [phonometry](https://pypi.org/project/phonometry/).**
|
|
17
|
-
|
|
18
|
-
This is a transition package: installing or upgrading `PyOctaveBand` installs
|
|
19
|
-
`phonometry` and provides a `pyoctaveband` module that re-exports the full,
|
|
20
|
-
unchanged API with a `DeprecationWarning`. Your existing code keeps working,
|
|
21
|
-
but new code should use the new name:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
pip install phonometry
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
```python
|
|
28
|
-
import phonometry # instead of: import pyoctaveband
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
The API is identical — renaming the import is a complete migration.
|
|
32
|
-
|
|
33
|
-
- Documentation: https://jmrplens.github.io/phonometry/
|
|
34
|
-
- Repository: https://github.com/jmrplens/phonometry
|
|
35
|
-
- Last release under the old name: [`pyoctaveband-v2` branch](https://github.com/jmrplens/phonometry/tree/pyoctaveband-v2)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
phonometry>=3.0.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|