zope.locking 2.0.0__tar.gz → 3.0__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 (41) hide show
  1. zope_locking-3.0/.pre-commit-config.yaml +28 -0
  2. {zope.locking-2.0.0 → zope_locking-3.0}/CHANGES.rst +31 -14
  3. zope_locking-3.0/CONTRIBUTING.md +23 -0
  4. zope_locking-3.0/MANIFEST.in +12 -0
  5. zope_locking-3.0/PKG-INFO +1246 -0
  6. zope_locking-3.0/pyproject.toml +32 -0
  7. zope_locking-3.0/setup.cfg +23 -0
  8. {zope.locking-2.0.0 → zope_locking-3.0}/setup.py +19 -18
  9. zope_locking-3.0/src/zope/__init__.py +1 -0
  10. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/README.rst +22 -23
  11. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/adapters.py +7 -5
  12. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/annoying.rst +6 -6
  13. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/generations.py +3 -3
  14. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/interfaces.py +20 -20
  15. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/testing.py +4 -2
  16. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/tests.py +14 -1
  17. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/tokens.py +9 -6
  18. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/utility.py +15 -11
  19. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/utils.py +1 -0
  20. zope_locking-3.0/src/zope.locking.egg-info/PKG-INFO +1246 -0
  21. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope.locking.egg-info/SOURCES.txt +5 -0
  22. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope.locking.egg-info/requires.txt +1 -1
  23. zope_locking-3.0/tox.ini +71 -0
  24. zope.locking-2.0.0/MANIFEST.in +0 -2
  25. zope.locking-2.0.0/PKG-INFO +0 -1201
  26. zope.locking-2.0.0/setup.cfg +0 -4
  27. zope.locking-2.0.0/src/zope/__init__.py +0 -7
  28. zope.locking-2.0.0/src/zope.locking.egg-info/PKG-INFO +0 -1201
  29. {zope.locking-2.0.0 → zope_locking-3.0}/COPYRIGHT.rst +0 -0
  30. {zope.locking-2.0.0 → zope_locking-3.0}/LICENSE.rst +0 -0
  31. {zope.locking-2.0.0 → zope_locking-3.0}/README.rst +0 -0
  32. {zope.locking-2.0.0 → zope_locking-3.0}/buildout.cfg +0 -0
  33. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/__init__.py +0 -0
  34. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/cleanup.rst +0 -0
  35. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/configure.zcml +0 -0
  36. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/ftesting.zcml +0 -0
  37. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope/locking/generations.zcml +0 -0
  38. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope.locking.egg-info/dependency_links.txt +0 -0
  39. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope.locking.egg-info/namespace_packages.txt +0 -0
  40. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope.locking.egg-info/not-zip-safe +0 -0
  41. {zope.locking-2.0.0 → zope_locking-3.0}/src/zope.locking.egg-info/top_level.txt +0 -0
@@ -0,0 +1,28 @@
1
+ # Generated from:
2
+ # https://github.com/zopefoundation/meta/tree/master/config/pure-python
3
+ minimum_pre_commit_version: '3.6'
4
+ repos:
5
+ - repo: https://github.com/pycqa/isort
6
+ rev: "6.0.1"
7
+ hooks:
8
+ - id: isort
9
+ - repo: https://github.com/hhatto/autopep8
10
+ rev: "v2.3.2"
11
+ hooks:
12
+ - id: autopep8
13
+ args: [--in-place, --aggressive, --aggressive]
14
+ - repo: https://github.com/asottile/pyupgrade
15
+ rev: v3.19.1
16
+ hooks:
17
+ - id: pyupgrade
18
+ args: [--py39-plus]
19
+ - repo: https://github.com/isidentical/teyit
20
+ rev: 0.4.3
21
+ hooks:
22
+ - id: teyit
23
+ - repo: https://github.com/PyCQA/flake8
24
+ rev: "7.2.0"
25
+ hooks:
26
+ - id: flake8
27
+ additional_dependencies:
28
+ - flake8-debugger == 4.1.2
@@ -2,9 +2,26 @@
2
2
  Changes
3
3
  =======
4
4
 
5
- ------------------
5
+ 3.0 (2025-09-04)
6
+ ================
7
+
8
+ - Add support for Python 3.9, 3.10, 3.11, 3.12, 3.13.
9
+
10
+ - Drop support for Python 2.7, 3.5, 3.6, 3.7, 3.8.
11
+
12
+
13
+ 2.1.0 (2020-04-15)
14
+ ==================
15
+
16
+ - Fix DeprecationWarnings for ObjectEvent.
17
+
18
+ - Add support for Python 3.7 and 3.8.
19
+
20
+ - Drop support for Python 3.3 and 3.4.
21
+
22
+
6
23
  2.0.0 (2018-01-23)
7
- ------------------
24
+ ==================
8
25
 
9
26
  - Python 3 compatibility.
10
27
 
@@ -17,25 +34,25 @@ Changes
17
34
 
18
35
  - Revived from svn.zope.org
19
36
 
20
- ------------------
37
+
21
38
  1.2.2 (2011-01-31)
22
- ------------------
39
+ ==================
23
40
 
24
41
  - Consolidate duplicate evolution code.
25
42
 
26
43
  - Split generations config into its own zcml file.
27
44
 
28
- ------------------
45
+
29
46
  1.2.1 (2010-01-20)
30
- ------------------
47
+ ==================
31
48
 
32
49
  - Bug fix: the generation added in 1.2 did not properly clean up
33
50
  expired tokens, and could leave the token utility in an inconsistent
34
51
  state.
35
52
 
36
- ----------------
53
+
37
54
  1.2 (2009-11-23)
38
- ----------------
55
+ ================
39
56
 
40
57
  - Bug fix: tokens were stored in a manner that prevented them from
41
58
  being cleaned up properly in the utility's _principal_ids mapping.
@@ -54,24 +71,24 @@ Changes
54
71
 
55
72
  - Fix some missing imports.
56
73
 
57
- ---
74
+
58
75
  1.1
59
- ---
76
+ ===
60
77
 
61
78
  (series for Zope 3.4; eggs)
62
79
 
63
80
  1.1b
64
- ----
81
+ ====
65
82
 
66
83
  - converted to use eggs
67
84
 
68
- ---
85
+
69
86
  1.0
70
- ---
87
+ ===
71
88
 
72
89
  (series for Zope 3.3; no dependencies on Zope eggs)
73
90
 
74
91
  1.0b
75
- ----
92
+ ====
76
93
 
77
94
  Initial non-dev release
@@ -0,0 +1,23 @@
1
+ <!--
2
+ Generated from:
3
+ https://github.com/zopefoundation/meta/tree/master/config/pure-python
4
+ -->
5
+ # Contributing to zopefoundation projects
6
+
7
+ The projects under the zopefoundation GitHub organization are open source and
8
+ welcome contributions in different forms:
9
+
10
+ * bug reports
11
+ * code improvements and bug fixes
12
+ * documentation improvements
13
+ * pull request reviews
14
+
15
+ For any changes in the repository besides trivial typo fixes you are required
16
+ to sign the contributor agreement. See
17
+ https://www.zope.dev/developer/becoming-a-committer.html for details.
18
+
19
+ Please visit our [Developer
20
+ Guidelines](https://www.zope.dev/developer/guidelines.html) if you'd like to
21
+ contribute code changes and our [guidelines for reporting
22
+ bugs](https://www.zope.dev/developer/reporting-bugs.html) if you want to file a
23
+ bug report.
@@ -0,0 +1,12 @@
1
+ # Generated from:
2
+ # https://github.com/zopefoundation/meta/tree/master/config/pure-python
3
+ include *.md
4
+ include *.rst
5
+ include *.txt
6
+ include buildout.cfg
7
+ include tox.ini
8
+ include .pre-commit-config.yaml
9
+
10
+ recursive-include src *.py
11
+ recursive-include src *.rst
12
+ recursive-include src *.zcml