apply 1.7__tar.gz → 2.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.
- {apply-1.7 → apply-2.0}/CHANGES.rst +18 -0
- {apply-1.7 → apply-2.0}/LICENSE +1 -1
- {apply-1.7/apply.egg-info → apply-2.0}/PKG-INFO +25 -6
- {apply-1.7 → apply-2.0}/apply/__init__.py +0 -1
- {apply-1.7 → apply-2.0/apply.egg-info}/PKG-INFO +25 -6
- apply-2.0/apply.egg-info/requires.txt +4 -0
- {apply-1.7 → apply-2.0}/setup.cfg +4 -14
- {apply-1.7 → apply-2.0}/tox.ini +5 -4
- apply-1.7/apply.egg-info/requires.txt +0 -4
- {apply-1.7 → apply-2.0}/MANIFEST.in +0 -0
- {apply-1.7 → apply-2.0}/README.rst +0 -0
- {apply-1.7 → apply-2.0}/apply/apply.py +0 -0
- {apply-1.7 → apply-2.0}/apply/tests/__init__.py +0 -0
- {apply-1.7 → apply-2.0}/apply/tests/test_apply.py +0 -0
- {apply-1.7 → apply-2.0}/apply.egg-info/SOURCES.txt +0 -0
- {apply-1.7 → apply-2.0}/apply.egg-info/dependency_links.txt +0 -0
- {apply-1.7 → apply-2.0}/apply.egg-info/not-zip-safe +0 -0
- {apply-1.7 → apply-2.0}/apply.egg-info/top_level.txt +0 -0
- {apply-1.7 → apply-2.0}/pyproject.toml +0 -0
- {apply-1.7 → apply-2.0}/setup.py +0 -0
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
2.0 - 2026-07-06
|
|
5
|
+
----------------
|
|
6
|
+
|
|
7
|
+
- Remove deprecated license classifier.
|
|
8
|
+
[stefan]
|
|
9
|
+
|
|
10
|
+
- Upgrade GitHub workflow.
|
|
11
|
+
[stefan]
|
|
12
|
+
|
|
13
|
+
- Upgrade .readthedocs.yaml.
|
|
14
|
+
[stefan]
|
|
15
|
+
|
|
16
|
+
- Upgrade sphinx and sphinx-rtd-theme in docs extra.
|
|
17
|
+
[stefan]
|
|
18
|
+
|
|
19
|
+
- Require Python >= 3.5.
|
|
20
|
+
[stefan]
|
|
21
|
+
|
|
4
22
|
1.7 - 2023-09-14
|
|
5
23
|
----------------
|
|
6
24
|
|
{apply-1.7 → apply-2.0}/LICENSE
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: apply
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0
|
|
4
4
|
Summary: An apply function for Python 2 and 3
|
|
5
5
|
Home-page: https://github.com/stefanholek/apply
|
|
6
6
|
Author: Stefan H. Holek
|
|
@@ -10,15 +10,16 @@ Project-URL: Documentation, https://apply.readthedocs.io/en/stable/
|
|
|
10
10
|
Keywords: apply,read,write,property,properties
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
14
13
|
Classifier: Operating System :: OS Independent
|
|
15
14
|
Classifier: Programming Language :: Python
|
|
16
|
-
Classifier: Programming Language :: Python :: 2
|
|
17
15
|
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Requires-Python:
|
|
16
|
+
Requires-Python: >=3.5
|
|
19
17
|
Description-Content-Type: text/x-rst
|
|
20
|
-
Provides-Extra: docs
|
|
21
18
|
License-File: LICENSE
|
|
19
|
+
Provides-Extra: docs
|
|
20
|
+
Requires-Dist: sphinx==9.1.0; extra == "docs"
|
|
21
|
+
Requires-Dist: sphinx-rtd-theme==3.1.0; extra == "docs"
|
|
22
|
+
Dynamic: license-file
|
|
22
23
|
|
|
23
24
|
=====
|
|
24
25
|
apply
|
|
@@ -77,6 +78,24 @@ For further details please refer to the `API Documentation`_.
|
|
|
77
78
|
Changelog
|
|
78
79
|
=========
|
|
79
80
|
|
|
81
|
+
2.0 - 2026-07-06
|
|
82
|
+
----------------
|
|
83
|
+
|
|
84
|
+
- Remove deprecated license classifier.
|
|
85
|
+
[stefan]
|
|
86
|
+
|
|
87
|
+
- Upgrade GitHub workflow.
|
|
88
|
+
[stefan]
|
|
89
|
+
|
|
90
|
+
- Upgrade .readthedocs.yaml.
|
|
91
|
+
[stefan]
|
|
92
|
+
|
|
93
|
+
- Upgrade sphinx and sphinx-rtd-theme in docs extra.
|
|
94
|
+
[stefan]
|
|
95
|
+
|
|
96
|
+
- Require Python >= 3.5.
|
|
97
|
+
[stefan]
|
|
98
|
+
|
|
80
99
|
1.7 - 2023-09-14
|
|
81
100
|
----------------
|
|
82
101
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: apply
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0
|
|
4
4
|
Summary: An apply function for Python 2 and 3
|
|
5
5
|
Home-page: https://github.com/stefanholek/apply
|
|
6
6
|
Author: Stefan H. Holek
|
|
@@ -10,15 +10,16 @@ Project-URL: Documentation, https://apply.readthedocs.io/en/stable/
|
|
|
10
10
|
Keywords: apply,read,write,property,properties
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
14
13
|
Classifier: Operating System :: OS Independent
|
|
15
14
|
Classifier: Programming Language :: Python
|
|
16
|
-
Classifier: Programming Language :: Python :: 2
|
|
17
15
|
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Requires-Python:
|
|
16
|
+
Requires-Python: >=3.5
|
|
19
17
|
Description-Content-Type: text/x-rst
|
|
20
|
-
Provides-Extra: docs
|
|
21
18
|
License-File: LICENSE
|
|
19
|
+
Provides-Extra: docs
|
|
20
|
+
Requires-Dist: sphinx==9.1.0; extra == "docs"
|
|
21
|
+
Requires-Dist: sphinx-rtd-theme==3.1.0; extra == "docs"
|
|
22
|
+
Dynamic: license-file
|
|
22
23
|
|
|
23
24
|
=====
|
|
24
25
|
apply
|
|
@@ -77,6 +78,24 @@ For further details please refer to the `API Documentation`_.
|
|
|
77
78
|
Changelog
|
|
78
79
|
=========
|
|
79
80
|
|
|
81
|
+
2.0 - 2026-07-06
|
|
82
|
+
----------------
|
|
83
|
+
|
|
84
|
+
- Remove deprecated license classifier.
|
|
85
|
+
[stefan]
|
|
86
|
+
|
|
87
|
+
- Upgrade GitHub workflow.
|
|
88
|
+
[stefan]
|
|
89
|
+
|
|
90
|
+
- Upgrade .readthedocs.yaml.
|
|
91
|
+
[stefan]
|
|
92
|
+
|
|
93
|
+
- Upgrade sphinx and sphinx-rtd-theme in docs extra.
|
|
94
|
+
[stefan]
|
|
95
|
+
|
|
96
|
+
- Require Python >= 3.5.
|
|
97
|
+
[stefan]
|
|
98
|
+
|
|
80
99
|
1.7 - 2023-09-14
|
|
81
100
|
----------------
|
|
82
101
|
|
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = apply
|
|
3
|
-
version =
|
|
3
|
+
version = 2.0
|
|
4
4
|
description = An apply function for Python 2 and 3
|
|
5
5
|
long_description = file: README.rst, CHANGES.rst
|
|
6
6
|
long_description_content_type = text/x-rst
|
|
7
7
|
classifiers =
|
|
8
8
|
Development Status :: 5 - Production/Stable
|
|
9
9
|
Intended Audience :: Developers
|
|
10
|
-
License :: OSI Approved :: BSD License
|
|
11
10
|
Operating System :: OS Independent
|
|
12
11
|
Programming Language :: Python
|
|
13
|
-
Programming Language :: Python :: 2
|
|
14
12
|
Programming Language :: Python :: 3
|
|
15
13
|
keywords = apply, read, write, property, properties
|
|
16
14
|
author = Stefan H. Holek
|
|
@@ -24,7 +22,7 @@ license = BSD-2-Clause
|
|
|
24
22
|
packages = find:
|
|
25
23
|
include_package_data = false
|
|
26
24
|
zip_safe = false
|
|
27
|
-
python_requires = >=
|
|
25
|
+
python_requires = >=3.5
|
|
28
26
|
|
|
29
27
|
[options.packages.find]
|
|
30
28
|
exclude =
|
|
@@ -32,18 +30,10 @@ exclude =
|
|
|
32
30
|
|
|
33
31
|
[options.extras_require]
|
|
34
32
|
docs =
|
|
35
|
-
sphinx ==
|
|
36
|
-
sphinx-rtd-theme == 1.0
|
|
33
|
+
sphinx == 9.1.0
|
|
34
|
+
sphinx-rtd-theme == 3.1.0
|
|
37
35
|
|
|
38
36
|
[egg_info]
|
|
39
37
|
tag_build =
|
|
40
38
|
tag_date = 0
|
|
41
39
|
|
|
42
|
-
[bdist_wheel]
|
|
43
|
-
universal = true
|
|
44
|
-
|
|
45
|
-
[build_sphinx]
|
|
46
|
-
source_dir = docs
|
|
47
|
-
build_dir = docs/_build
|
|
48
|
-
all_files = true
|
|
49
|
-
|
{apply-1.7 → apply-2.0}/tox.ini
RENAMED
|
@@ -4,17 +4,18 @@
|
|
|
4
4
|
# "pip install tox" and then run "tox" from this directory.
|
|
5
5
|
|
|
6
6
|
[tox]
|
|
7
|
-
envlist =
|
|
8
|
-
requires = virtualenv<20.22.0
|
|
7
|
+
envlist = py310, py311, py312, py313, py314, py315, pypy311
|
|
9
8
|
|
|
10
9
|
[testenv]
|
|
11
10
|
package = wheel
|
|
12
11
|
wheel_build_env = .pkg
|
|
13
|
-
commands =
|
|
12
|
+
commands =
|
|
13
|
+
python -m unittest discover {posargs}
|
|
14
14
|
|
|
15
15
|
[testenv:docs]
|
|
16
16
|
extras = docs
|
|
17
|
-
commands =
|
|
17
|
+
commands =
|
|
18
|
+
python -m sphinx -a -d docs/_build/doctrees {posargs} docs docs/_build/html
|
|
18
19
|
|
|
19
20
|
[pytest]
|
|
20
21
|
testpaths = apply/tests
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{apply-1.7 → apply-2.0}/setup.py
RENAMED
|
File without changes
|