zope.locking 2.1.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 (42) hide show
  1. zope_locking-3.0/.pre-commit-config.yaml +28 -0
  2. {zope.locking-2.1.0 → zope_locking-3.0}/CHANGES.rst +8 -0
  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.1.0 → zope_locking-3.0}/setup.py +11 -18
  9. zope_locking-3.0/src/zope/__init__.py +1 -0
  10. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/adapters.py +7 -5
  11. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/generations.py +3 -3
  12. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/interfaces.py +20 -20
  13. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/testing.py +4 -2
  14. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/tests.py +3 -1
  15. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/tokens.py +9 -6
  16. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/utility.py +15 -11
  17. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/utils.py +1 -0
  18. zope_locking-3.0/src/zope.locking.egg-info/PKG-INFO +1246 -0
  19. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope.locking.egg-info/SOURCES.txt +4 -0
  20. zope_locking-3.0/tox.ini +71 -0
  21. zope.locking-2.1.0/MANIFEST.in +0 -5
  22. zope.locking-2.1.0/PKG-INFO +0 -1213
  23. zope.locking-2.1.0/setup.cfg +0 -4
  24. zope.locking-2.1.0/src/zope/__init__.py +0 -7
  25. zope.locking-2.1.0/src/zope.locking.egg-info/PKG-INFO +0 -1213
  26. zope.locking-2.1.0/tox.ini +0 -16
  27. {zope.locking-2.1.0 → zope_locking-3.0}/COPYRIGHT.rst +0 -0
  28. {zope.locking-2.1.0 → zope_locking-3.0}/LICENSE.rst +0 -0
  29. {zope.locking-2.1.0 → zope_locking-3.0}/README.rst +0 -0
  30. {zope.locking-2.1.0 → zope_locking-3.0}/buildout.cfg +0 -0
  31. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/README.rst +0 -0
  32. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/__init__.py +0 -0
  33. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/annoying.rst +0 -0
  34. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/cleanup.rst +0 -0
  35. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/configure.zcml +0 -0
  36. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/ftesting.zcml +0 -0
  37. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/generations.zcml +0 -0
  38. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope.locking.egg-info/dependency_links.txt +0 -0
  39. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope.locking.egg-info/namespace_packages.txt +0 -0
  40. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope.locking.egg-info/not-zip-safe +0 -0
  41. {zope.locking-2.1.0 → zope_locking-3.0}/src/zope.locking.egg-info/requires.txt +0 -0
  42. {zope.locking-2.1.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,6 +2,14 @@
2
2
  Changes
3
3
  =======
4
4
 
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
+
5
13
  2.1.0 (2020-04-15)
6
14
  ==================
7
15
 
@@ -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