Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cristobaltapia committed Mar 23, 2023
1 parent 5b345bf commit 9939adc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
[tool.poetry]
name = "vibrometer_analysis"
version = "0.1.0"
version = "0.2.0"
description = ""
authors = ["Cristóbal Tapia Camú <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.19.0"
python = "^3.8,<4.0"
pandas = "^1.0.5"
scipy = "^1.5.1"
matplotlib = "3.1.0"
sounddevice = "^0.4.0"
pyqt5 = "^5.15.0"
pyinstaller = "^4.0"
numpy = "^1.24.2"

[tool.poetry.dev-dependencies]
pytest = "^5.2"

[tool.poetry.scripts]
app = "vibrometer_analysis.qt_app:main"

[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
yapf = "^0.32.0"
pydocstyle = "^6.3.0"
toml = "^0.10.2"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
Expand Down
4 changes: 2 additions & 2 deletions vibrometer_analysis/vibrometer.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ def wait_and_record(self, duration, total_recording, thress, progress=None):
Parameters
----------
duration : TODO
duration : float
total_recording : TODO
Returns
-------
TODO
impact_detected
"""
total_recording = int(total_recording)
Expand Down

0 comments on commit 9939adc

Please sign in to comment.