Skip to content

Commit

Permalink
Merge pull request #101 from RhetTbull/python3.12
Browse files Browse the repository at this point in the history
Added support for python3.12
  • Loading branch information
RhetTbull committed Oct 22, 2023
2 parents 58ee9a9 + a1ce0ea commit e01a78b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pyobjc-framework-CoreMedia = "^9.0.0"
pyobjc-framework-CoreServices = "^9.0.0"
pyobjc-framework-Quartz = "^9.0.0"
pyobjc-framework-ScriptingBridge = "^9.0.0"
python = ">=3.8,<3.12"
python = ">=3.8,<=3.12"
wheel = "^0.41.2"
xattr = "^0.10.1"

Expand Down
2 changes: 1 addition & 1 deletion tests/test_mditem_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def test_mditem_attributes_video(test_video):
"""test mditem attributes for video files"""

md = OSXMetaData(test_video)
assert sorted(md.get("kMDItemCodecs")) == sorted(["H.264", "AAC", "Timed Metadata"])
assert "H.264" in md.get("kMDItemCodecs")
assert md.get("kMDItemAudioBitRate") == 64.0


Expand Down

0 comments on commit e01a78b

Please sign in to comment.