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.
- zope_locking-3.0/.pre-commit-config.yaml +28 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/CHANGES.rst +8 -0
- zope_locking-3.0/CONTRIBUTING.md +23 -0
- zope_locking-3.0/MANIFEST.in +12 -0
- zope_locking-3.0/PKG-INFO +1246 -0
- zope_locking-3.0/pyproject.toml +32 -0
- zope_locking-3.0/setup.cfg +23 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/setup.py +11 -18
- zope_locking-3.0/src/zope/__init__.py +1 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/adapters.py +7 -5
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/generations.py +3 -3
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/interfaces.py +20 -20
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/testing.py +4 -2
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/tests.py +3 -1
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/tokens.py +9 -6
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/utility.py +15 -11
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/utils.py +1 -0
- zope_locking-3.0/src/zope.locking.egg-info/PKG-INFO +1246 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope.locking.egg-info/SOURCES.txt +4 -0
- zope_locking-3.0/tox.ini +71 -0
- zope.locking-2.1.0/MANIFEST.in +0 -5
- zope.locking-2.1.0/PKG-INFO +0 -1213
- zope.locking-2.1.0/setup.cfg +0 -4
- zope.locking-2.1.0/src/zope/__init__.py +0 -7
- zope.locking-2.1.0/src/zope.locking.egg-info/PKG-INFO +0 -1213
- zope.locking-2.1.0/tox.ini +0 -16
- {zope.locking-2.1.0 → zope_locking-3.0}/COPYRIGHT.rst +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/LICENSE.rst +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/README.rst +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/buildout.cfg +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/README.rst +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/__init__.py +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/annoying.rst +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/cleanup.rst +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/configure.zcml +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/ftesting.zcml +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope/locking/generations.zcml +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope.locking.egg-info/dependency_links.txt +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope.locking.egg-info/namespace_packages.txt +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope.locking.egg-info/not-zip-safe +0 -0
- {zope.locking-2.1.0 → zope_locking-3.0}/src/zope.locking.egg-info/requires.txt +0 -0
- {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
|
@@ -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
|