PyOctaveBand 2.1.2__tar.gz → 2.2.0__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.
@@ -0,0 +1,55 @@
1
+ Metadata-Version: 2.4
2
+ Name: PyOctaveBand
3
+ Version: 2.2.0
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 is now [phonometry](https://pypi.org/project/phonometry/)
16
+
17
+ Same author, same project, grown well past what the old name described. The
18
+ package you installed for fractional octave-band filtering now runs 995
19
+ conformance checks across 77 domains and 408 standards, and reaches from
20
+ filters, weighting and sound level metrology to psychoacoustics, rooms and
21
+ buildings, materials, vibration, environmental, aircraft and underwater
22
+ acoustics, electroacoustics and wave simulation. Every metric is implemented
23
+ from its governing standard and pinned to a number printed in it.
24
+
25
+ ```bash
26
+ pip install phonometry[full]
27
+ ```
28
+
29
+ ```python
30
+ import phonometry # instead of: import pyoctaveband
31
+ ```
32
+
33
+ ## What this package is
34
+
35
+ A bridge, not the library. Installing or upgrading `PyOctaveBand` installs
36
+ phonometry and gives you a `pyoctaveband` module that re-exports it with a
37
+ `FutureWarning`, which Python shows by default so the notice actually reaches
38
+ you.
39
+
40
+ It resolves `phonometry>=3.0.0,<4`, the last line whose API is the API of the
41
+ final release under the old name. Within it the old name and the new one
42
+ expose the same functions, which is what makes the shim honest.
43
+
44
+ The bridge ends there, and on purpose. phonometry 4.0 moved every name into
45
+ the module of its domain, so a `PyOctaveBand` that installed 4.x would resolve
46
+ to a library that raises `AttributeError` for names `pyoctaveband` promises.
47
+ This package will not follow it. Install phonometry under its own name and
48
+ take the guide below: it maps every 3.x name to its new home, and it names the
49
+ three places where the obvious fix is the wrong one.
50
+
51
+ - Upgrading to 4.0: https://jmrplens.github.io/phonometry/start/upgrading/
52
+ - Documentation: https://jmrplens.github.io/phonometry/
53
+ - Package: https://pypi.org/project/phonometry/
54
+ - Repository: https://github.com/jmrplens/phonometry
55
+ - Last release under the old name: [`pyoctaveband-v2` branch](https://github.com/jmrplens/phonometry/tree/pyoctaveband-v2)
@@ -0,0 +1,41 @@
1
+ # PyOctaveBand is now [phonometry](https://pypi.org/project/phonometry/)
2
+
3
+ Same author, same project, grown well past what the old name described. The
4
+ package you installed for fractional octave-band filtering now runs 995
5
+ conformance checks across 77 domains and 408 standards, and reaches from
6
+ filters, weighting and sound level metrology to psychoacoustics, rooms and
7
+ buildings, materials, vibration, environmental, aircraft and underwater
8
+ acoustics, electroacoustics and wave simulation. Every metric is implemented
9
+ from its governing standard and pinned to a number printed in it.
10
+
11
+ ```bash
12
+ pip install phonometry[full]
13
+ ```
14
+
15
+ ```python
16
+ import phonometry # instead of: import pyoctaveband
17
+ ```
18
+
19
+ ## What this package is
20
+
21
+ A bridge, not the library. Installing or upgrading `PyOctaveBand` installs
22
+ phonometry and gives you a `pyoctaveband` module that re-exports it with a
23
+ `FutureWarning`, which Python shows by default so the notice actually reaches
24
+ you.
25
+
26
+ It resolves `phonometry>=3.0.0,<4`, the last line whose API is the API of the
27
+ final release under the old name. Within it the old name and the new one
28
+ expose the same functions, which is what makes the shim honest.
29
+
30
+ The bridge ends there, and on purpose. phonometry 4.0 moved every name into
31
+ the module of its domain, so a `PyOctaveBand` that installed 4.x would resolve
32
+ to a library that raises `AttributeError` for names `pyoctaveband` promises.
33
+ This package will not follow it. Install phonometry under its own name and
34
+ take the guide below: it maps every 3.x name to its new home, and it names the
35
+ three places where the obvious fix is the wrong one.
36
+
37
+ - Upgrading to 4.0: https://jmrplens.github.io/phonometry/start/upgrading/
38
+ - Documentation: https://jmrplens.github.io/phonometry/
39
+ - Package: https://pypi.org/project/phonometry/
40
+ - Repository: https://github.com/jmrplens/phonometry
41
+ - Last release under the old name: [`pyoctaveband-v2` branch](https://github.com/jmrplens/phonometry/tree/pyoctaveband-v2)
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "PyOctaveBand"
7
- version = "2.1.2"
7
+ version = "2.2.0"
8
8
  authors = [
9
9
  { name="José Manuel Requena Plens", email="mail@jmrp.io" },
10
10
  ]
@@ -0,0 +1,55 @@
1
+ Metadata-Version: 2.4
2
+ Name: PyOctaveBand
3
+ Version: 2.2.0
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 is now [phonometry](https://pypi.org/project/phonometry/)
16
+
17
+ Same author, same project, grown well past what the old name described. The
18
+ package you installed for fractional octave-band filtering now runs 995
19
+ conformance checks across 77 domains and 408 standards, and reaches from
20
+ filters, weighting and sound level metrology to psychoacoustics, rooms and
21
+ buildings, materials, vibration, environmental, aircraft and underwater
22
+ acoustics, electroacoustics and wave simulation. Every metric is implemented
23
+ from its governing standard and pinned to a number printed in it.
24
+
25
+ ```bash
26
+ pip install phonometry[full]
27
+ ```
28
+
29
+ ```python
30
+ import phonometry # instead of: import pyoctaveband
31
+ ```
32
+
33
+ ## What this package is
34
+
35
+ A bridge, not the library. Installing or upgrading `PyOctaveBand` installs
36
+ phonometry and gives you a `pyoctaveband` module that re-exports it with a
37
+ `FutureWarning`, which Python shows by default so the notice actually reaches
38
+ you.
39
+
40
+ It resolves `phonometry>=3.0.0,<4`, the last line whose API is the API of the
41
+ final release under the old name. Within it the old name and the new one
42
+ expose the same functions, which is what makes the shim honest.
43
+
44
+ The bridge ends there, and on purpose. phonometry 4.0 moved every name into
45
+ the module of its domain, so a `PyOctaveBand` that installed 4.x would resolve
46
+ to a library that raises `AttributeError` for names `pyoctaveband` promises.
47
+ This package will not follow it. Install phonometry under its own name and
48
+ take the guide below: it maps every 3.x name to its new home, and it names the
49
+ three places where the obvious fix is the wrong one.
50
+
51
+ - Upgrading to 4.0: https://jmrplens.github.io/phonometry/start/upgrading/
52
+ - Documentation: https://jmrplens.github.io/phonometry/
53
+ - Package: https://pypi.org/project/phonometry/
54
+ - Repository: https://github.com/jmrplens/phonometry
55
+ - Last release under the old name: [`pyoctaveband-v2` branch](https://github.com/jmrplens/phonometry/tree/pyoctaveband-v2)
@@ -13,9 +13,10 @@ from phonometry import __all__, __version__ # noqa: F401
13
13
  # FutureWarning (not DeprecationWarning): visible by default, so users of
14
14
  # the old name actually see the migration notice.
15
15
  warnings.warn(
16
- "PyOctaveBand has been renamed to 'phonometry'. The API is identical: "
17
- "replace 'import pyoctaveband' with 'import phonometry'. "
18
- "See https://jmrplens.github.io/phonometry/",
16
+ "PyOctaveBand has been renamed to 'phonometry'. This package installs the "
17
+ "3.x line, where 'import phonometry' replaces 'import pyoctaveband' and "
18
+ "nothing else changes. From 4.0 on, names live in the module of their "
19
+ "domain: https://jmrplens.github.io/phonometry/start/upgrading/",
19
20
  FutureWarning,
20
21
  stacklevel=2,
21
22
  )
@@ -1,53 +0,0 @@
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)
@@ -1,39 +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 `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)
@@ -1,53 +0,0 @@
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)
File without changes