Skip to content

Commit 502cb6b

Browse files
committed
Updated dependencies, #21
1 parent aeb1b63 commit 502cb6b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

dev_requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
bump2version==1.0.1
2-
osxmetadata==1.0.0
3-
pytest==7.1.3
1+
bump2version>=1.0.1,<2.0.0
2+
osxmetadata>=1.0.0,<2.0.0
3+
pytest>=7.1.3,<8.0.0

requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
py-applescript==1.0.3
22
py2app>=0.28.6
33
pyobjc-core>=9.2
4-
pyobjc-framework-cocoa>=9.2;
4+
pyobjc-framework-cocoa>=9.2
55
pyobjc-framework-coreml>=9.2
66
pyobjc-framework-quartz>=9.2
77
pyobjc-framework-vision>=9.2
8-
rumps==0.4.0
9-
wheel==0.41.2
8+
rumps>=0.4.0,<0.5.0
9+
wheel>=0.41.2

tests/loginitems.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
"""Utilities for working with System Preferences > Users & Groups > Login Items on macOS."""
22

3-
import applescript
43
from typing import List
54

5+
import applescript
6+
67
__all__ = ["add_login_item", "list_login_items", "remove_login_item"]
78

89
# The following functions are used to manipulate the Login Items list in System Preferences
@@ -32,4 +33,3 @@ def list_login_items() -> List[str]:
3233
"""Return list of login items"""
3334
scpt = 'tell application "System Events" to get the name of every login item'
3435
return applescript.AppleScript(scpt).run()
35-

0 commit comments

Comments
 (0)