pyobjc-framework-FSEvents 10.0__tar.gz → 10.2__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 (33) hide show
  1. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Examples/watcher.py +2 -2
  2. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/LICENSE.txt +1 -1
  3. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Lib/pyobjc_framework_FSEvents.egg-info/PKG-INFO +4 -3
  4. pyobjc-framework-FSEvents-10.2/Lib/pyobjc_framework_FSEvents.egg-info/requires.txt +2 -0
  5. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/PKG-INFO +4 -3
  6. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/pyobjc_setup.py +5 -4
  7. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/setup.py +1 -1
  8. pyobjc-framework-FSEvents-10.0/Lib/pyobjc_framework_FSEvents.egg-info/requires.txt +0 -2
  9. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Lib/FSEvents/__init__.py +0 -0
  10. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Lib/FSEvents/_metadata.py +0 -0
  11. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Lib/pyobjc_framework_FSEvents.egg-info/SOURCES.txt +0 -0
  12. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Lib/pyobjc_framework_FSEvents.egg-info/dependency_links.txt +0 -0
  13. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Lib/pyobjc_framework_FSEvents.egg-info/not-zip-safe +0 -0
  14. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Lib/pyobjc_framework_FSEvents.egg-info/top_level.txt +0 -0
  15. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/MANIFEST.in +0 -0
  16. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Modules/_callbacks.m +0 -0
  17. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Modules/pyobjc-api.h +0 -0
  18. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/Modules/pyobjc-compat.h +0 -0
  19. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/PyObjCTest/__init__.py +0 -0
  20. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/PyObjCTest/test_fsevents.py +0 -0
  21. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/CoreServices.fwinfo +0 -0
  22. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/metadata.ini +0 -0
  23. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/raw/arm64-12.0.fwinfo +0 -0
  24. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/raw/arm64-12.3.fwinfo +0 -0
  25. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/raw/arm64-14.0.fwinfo +0 -0
  26. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/raw/x86_64-10.6.fwinfo +0 -0
  27. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/raw/x86_64-10.7.fwinfo +0 -0
  28. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/raw/x86_64-10.8.fwinfo +0 -0
  29. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/raw/x86_64-12.0.fwinfo +0 -0
  30. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/raw/x86_64-12.3.fwinfo +0 -0
  31. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/metadata/raw/x86_64-14.0.fwinfo +0 -0
  32. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/pyproject.toml +0 -0
  33. {pyobjc-framework-FSEvents-10.0 → pyobjc-framework-FSEvents-10.2}/setup.cfg +0 -0
@@ -308,7 +308,7 @@ def iterate_subdirs(dirname, recursive):
308
308
 
309
309
  try:
310
310
  names = os.listdir(dirname)
311
- except os.error as msg:
311
+ except OSError as msg:
312
312
  if msg.errno in (errno.ENOENT, errno.EPERM, errno.EACCES):
313
313
  del dir_items[dirname]
314
314
  return 0
@@ -332,7 +332,7 @@ def check_for_deleted_dirs():
332
332
  for path in dir_items.keys():
333
333
  try:
334
334
  os.stat(path)
335
- except os.error:
335
+ except OSError:
336
336
  del dir_items[path]
337
337
 
338
338
 
@@ -1,7 +1,7 @@
1
1
  (This is the MIT license, note that libffi-src is a separate product with its own license)
2
2
 
3
3
  Copyright 2002, 2003 - Bill Bumgarner, Ronald Oussoren, Steve Majewski, Lele Gaifax, et.al.
4
- Copyright 2003-2022 - Ronald Oussoren
4
+ Copyright 2003-2024 - Ronald Oussoren
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7
7
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyobjc-framework-FSEvents
3
- Version: 10.0
3
+ Version: 10.2
4
4
  Summary: Wrappers for the framework FSEvents on macOS
5
5
  Home-page: https://github.com/ronaldoussoren/pyobjc
6
6
  Author: Ronald Oussoren
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.9
23
23
  Classifier: Programming Language :: Python :: 3.10
24
24
  Classifier: Programming Language :: Python :: 3.11
25
25
  Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
26
27
  Classifier: Programming Language :: Python :: Implementation :: CPython
27
28
  Classifier: Programming Language :: Objective C
28
29
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
@@ -30,8 +31,8 @@ Classifier: Topic :: Software Development :: User Interfaces
30
31
  Requires-Python: >=3.8
31
32
  Description-Content-Type: text/x-rst; charset=UTF-8
32
33
  License-File: LICENSE.txt
33
- Requires-Dist: pyobjc-core>=10.0
34
- Requires-Dist: pyobjc-framework-Cocoa>=10.0
34
+ Requires-Dist: pyobjc-core>=10.2
35
+ Requires-Dist: pyobjc-framework-Cocoa>=10.2
35
36
  Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
36
37
  Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
37
38
  Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
@@ -0,0 +1,2 @@
1
+ pyobjc-core>=10.2
2
+ pyobjc-framework-Cocoa>=10.2
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyobjc-framework-FSEvents
3
- Version: 10.0
3
+ Version: 10.2
4
4
  Summary: Wrappers for the framework FSEvents on macOS
5
5
  Home-page: https://github.com/ronaldoussoren/pyobjc
6
6
  Author: Ronald Oussoren
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.9
23
23
  Classifier: Programming Language :: Python :: 3.10
24
24
  Classifier: Programming Language :: Python :: 3.11
25
25
  Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
26
27
  Classifier: Programming Language :: Python :: Implementation :: CPython
27
28
  Classifier: Programming Language :: Objective C
28
29
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
@@ -30,8 +31,8 @@ Classifier: Topic :: Software Development :: User Interfaces
30
31
  Requires-Python: >=3.8
31
32
  Description-Content-Type: text/x-rst; charset=UTF-8
32
33
  License-File: LICENSE.txt
33
- Requires-Dist: pyobjc-core>=10.0
34
- Requires-Dist: pyobjc-framework-Cocoa>=10.0
34
+ Requires-Dist: pyobjc-core>=10.2
35
+ Requires-Dist: pyobjc-framework-Cocoa>=10.2
35
36
 
36
37
 
37
38
  Wrappers for the "FSEvents" API in macOS. The functions in this framework
@@ -213,6 +213,7 @@ Programming Language :: Python :: 3.9
213
213
  Programming Language :: Python :: 3.10
214
214
  Programming Language :: Python :: 3.11
215
215
  Programming Language :: Python :: 3.12
216
+ Programming Language :: Python :: 3.13
216
217
  Programming Language :: Python :: Implementation :: CPython
217
218
  Programming Language :: Objective C
218
219
  Topic :: Software Development :: Libraries :: Python Modules
@@ -576,19 +577,19 @@ def setup(min_os_level=None, max_os_level=None, cmdclass=None, **kwds):
576
577
  if min_os_level is not None:
577
578
  if max_os_level is not None:
578
579
  msg = (
579
- "This distribution is only supported on MacOSX "
580
+ "This distribution is only supported on macOS "
580
581
  "versions %s up to and including %s" % (min_os_level, max_os_level)
581
582
  )
582
583
  else:
583
- msg = "This distribution is only supported on MacOSX >= {}".format(
584
+ msg = "This distribution is only supported on macOS >= {}".format(
584
585
  min_os_level,
585
586
  )
586
587
  elif max_os_level is not None:
587
- msg = "This distribution is only supported on MacOSX <= {}".format(
588
+ msg = "This distribution is only supported on macOS <= {}".format(
588
589
  max_os_level,
589
590
  )
590
591
  else:
591
- msg = "This distribution is only supported on MacOSX"
592
+ msg = "This distribution is only supported on macOS"
592
593
 
593
594
  def create_command_subclass(base_class):
594
595
  class subcommand(base_class):
@@ -16,7 +16,7 @@ sys.path.insert(0, os.path.dirname(__file__))
16
16
 
17
17
  from pyobjc_setup import Extension, setup # noqa: E402
18
18
 
19
- VERSION = "10.0"
19
+ VERSION = "10.2"
20
20
 
21
21
  setup(
22
22
  name="pyobjc-framework-FSEvents",
@@ -1,2 +0,0 @@
1
- pyobjc-core>=10.0
2
- pyobjc-framework-Cocoa>=10.0