Skip to content

Commit 590f804

Browse files
author
tyler
committed
updated comments
increased upper limit of python requirements
1 parent b426035 commit 590f804

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

docs/examples_tutorial/e00_intro_set/s01_tone_fft_welch.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717

1818
if __name__ == "__main__":
1919
"""
20-
Average the Fast Fourier Transform (FFT) over sliding windows
21-
using the Welch method
20+
Average the Fast Fourier Transform (FFT) over sliding windows using the Welch method
2221
"""
2322

2423
# Construct a tone of fixed frequency with a constant sample rate

docs/examples_tutorial/e00_intro_set/s02_tone_stft_vs_spectrogram.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
print("The spectrogram returns power, whereas the stft returns invertible, complex Fourier coefficients.")
145145
print("The Welch spectrum is reproduced by averaging the stft over the time dimension.")
146146
print(
147-
"** NOTE: EXACT RECONSTRUCTION NOT EXPECTED WITH TAPER AND OTHER DEVIATIONS FROM IDEAL. PLAY WITH alpha."
147+
"** NOTE: EXACT RECONSTRUCTION NOT EXPECTED WITH TAPER AND OTHER DEVIATIONS FROM IDEAL. PLAY WITH alpha. "
148148
"ACCEPT AND QUANTIFY COMPROMISE **"
149149
)
150150

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
]
1111
description = "Quantized Information Entropy, Nth Octave (INFERNO)"
1212
readme = "README.md"
13-
requires-python = ">=3.9,<=3.13"
13+
requires-python = ">=3.9,<=3.14"
1414
license = {file = "LICENSE"}
1515

1616
# Please specify dependencies in alphabetical order

0 commit comments

Comments
 (0)