libavalon 0.0.2__tar.gz → 0.0.3__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.
Files changed (31) hide show
  1. {libavalon-0.0.2 → libavalon-0.0.3}/PKG-INFO +1 -1
  2. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/cli.py +6 -2
  3. {libavalon-0.0.2 → libavalon-0.0.3}/pyproject.toml +1 -1
  4. {libavalon-0.0.2 → libavalon-0.0.3}/uv.lock +1 -1
  5. {libavalon-0.0.2 → libavalon-0.0.3}/.gitignore +0 -0
  6. {libavalon-0.0.2 → libavalon-0.0.3}/.python-version +0 -0
  7. {libavalon-0.0.2 → libavalon-0.0.3}/LICENSE +0 -0
  8. {libavalon-0.0.2 → libavalon-0.0.3}/Makefile +0 -0
  9. {libavalon-0.0.2 → libavalon-0.0.3}/README.md +0 -0
  10. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/__init__.py +0 -0
  11. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/analysis/__init__.py +0 -0
  12. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/analysis/essentia_analyzer.py +0 -0
  13. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/analysis/model_cache.py +0 -0
  14. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/constants.py +0 -0
  15. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/conversion/__init__.py +0 -0
  16. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/conversion/converter.py +0 -0
  17. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/models.py +0 -0
  18. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/pathing.py +0 -0
  19. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/pipeline.py +0 -0
  20. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/state.py +0 -0
  21. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/tagging/__init__.py +0 -0
  22. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/tagging/analysis_blob.py +0 -0
  23. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/tagging/cover_art.py +0 -0
  24. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/tagging/tag_writer.py +0 -0
  25. {libavalon-0.0.2 → libavalon-0.0.3}/avalon/watcher.py +0 -0
  26. {libavalon-0.0.2 → libavalon-0.0.3}/scripts/benchmark_analyze.py +0 -0
  27. {libavalon-0.0.2 → libavalon-0.0.3}/tests/test_analysis_blob.py +0 -0
  28. {libavalon-0.0.2 → libavalon-0.0.3}/tests/test_cli.py +0 -0
  29. {libavalon-0.0.2 → libavalon-0.0.3}/tests/test_pathing.py +0 -0
  30. {libavalon-0.0.2 → libavalon-0.0.3}/tests/test_pipeline.py +0 -0
  31. {libavalon-0.0.2 → libavalon-0.0.3}/tests/test_tag_writer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: libavalon
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: Standalone audio analysis, tagging, and organization CLI
5
5
  Author: abelsonlive
6
6
  License: MIT
@@ -352,8 +352,12 @@ def run_watch(args: argparse.Namespace) -> int:
352
352
  logger.error("Failed: %s: %s", path, result.error)
353
353
  else:
354
354
  logger.info("%s -> %s", path, result.output_path)
355
- state_module.record(state, path)
356
- state_module.save(dest_root, state)
355
+ # --delete-original removes `path` as part of processing -- it
356
+ # can't recur at this location, so there's nothing to
357
+ # fingerprint (and doing so would crash on the now-missing file).
358
+ if path.exists():
359
+ state_module.record(state, path)
360
+ state_module.save(dest_root, state)
357
361
 
358
362
  if not args.no_backfill:
359
363
  logger.info("Backfilling existing files")
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "libavalon"
7
- version = "0.0.2"
7
+ version = "0.0.3"
8
8
  description = "Standalone audio analysis, tagging, and organization CLI"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -359,7 +359,7 @@ wheels = [
359
359
 
360
360
  [[package]]
361
361
  name = "libavalon"
362
- version = "0.0.2"
362
+ version = "0.0.3"
363
363
  source = { editable = "." }
364
364
  dependencies = [
365
365
  { name = "essentia-tensorflow" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes