apply 1.6__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.6 → apply-2.0}/CHANGES.rst +33 -0
- {apply-1.6 → apply-2.0}/LICENSE +1 -1
- {apply-1.6/apply.egg-info → apply-2.0}/PKG-INFO +40 -9
- {apply-1.6 → apply-2.0}/apply/__init__.py +2 -1
- {apply-1.6 → apply-2.0/apply.egg-info}/PKG-INFO +40 -9
- {apply-1.6 → apply-2.0}/apply.egg-info/SOURCES.txt +1 -0
- apply-2.0/apply.egg-info/not-zip-safe +1 -0
- apply-2.0/apply.egg-info/requires.txt +4 -0
- {apply-1.6 → apply-2.0}/setup.cfg +6 -14
- {apply-1.6 → apply-2.0}/tox.ini +7 -3
- apply-1.6/apply.egg-info/requires.txt +0 -4
- {apply-1.6 → apply-2.0}/MANIFEST.in +0 -0
- {apply-1.6 → apply-2.0}/README.rst +0 -0
- {apply-1.6 → apply-2.0}/apply/apply.py +0 -0
- {apply-1.6 → apply-2.0}/apply/tests/__init__.py +0 -0
- {apply-1.6 → apply-2.0}/apply/tests/test_apply.py +0 -0
- {apply-1.6 → apply-2.0}/apply.egg-info/dependency_links.txt +0 -0
- {apply-1.6 → apply-2.0}/apply.egg-info/top_level.txt +0 -0
- {apply-1.6 → apply-2.0}/pyproject.toml +0 -0
- {apply-1.6 → apply-2.0}/setup.py +0 -0
|
@@ -1,6 +1,39 @@
|
|
|
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
|
+
|
|
22
|
+
1.7 - 2023-09-14
|
|
23
|
+
----------------
|
|
24
|
+
|
|
25
|
+
- Update tox.ini for latest tox.
|
|
26
|
+
[stefan]
|
|
27
|
+
|
|
28
|
+
- Add GitHub CI workflow.
|
|
29
|
+
[stefan]
|
|
30
|
+
|
|
31
|
+
- Add .readthedocs.yaml file.
|
|
32
|
+
[stefan]
|
|
33
|
+
|
|
34
|
+
- Pin sphinx and sphinx-rtd-theme versions in docs extra.
|
|
35
|
+
[stefan]
|
|
36
|
+
|
|
4
37
|
1.6 - 2022-03-09
|
|
5
38
|
----------------
|
|
6
39
|
|
{apply-1.6 → 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
|
|
@@ -8,18 +8,18 @@ Author-email: stefan@epy.co.at
|
|
|
8
8
|
License: BSD-2-Clause
|
|
9
9
|
Project-URL: Documentation, https://apply.readthedocs.io/en/stable/
|
|
10
10
|
Keywords: apply,read,write,property,properties
|
|
11
|
-
Platform: UNKNOWN
|
|
12
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
13
12
|
Classifier: Intended Audience :: Developers
|
|
14
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
15
13
|
Classifier: Operating System :: OS Independent
|
|
16
14
|
Classifier: Programming Language :: Python
|
|
17
|
-
Classifier: Programming Language :: Python :: 2
|
|
18
15
|
Classifier: Programming Language :: Python :: 3
|
|
19
|
-
Requires-Python:
|
|
16
|
+
Requires-Python: >=3.5
|
|
20
17
|
Description-Content-Type: text/x-rst
|
|
21
|
-
Provides-Extra: docs
|
|
22
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
|
|
23
23
|
|
|
24
24
|
=====
|
|
25
25
|
apply
|
|
@@ -78,6 +78,39 @@ For further details please refer to the `API Documentation`_.
|
|
|
78
78
|
Changelog
|
|
79
79
|
=========
|
|
80
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
|
+
|
|
99
|
+
1.7 - 2023-09-14
|
|
100
|
+
----------------
|
|
101
|
+
|
|
102
|
+
- Update tox.ini for latest tox.
|
|
103
|
+
[stefan]
|
|
104
|
+
|
|
105
|
+
- Add GitHub CI workflow.
|
|
106
|
+
[stefan]
|
|
107
|
+
|
|
108
|
+
- Add .readthedocs.yaml file.
|
|
109
|
+
[stefan]
|
|
110
|
+
|
|
111
|
+
- Pin sphinx and sphinx-rtd-theme versions in docs extra.
|
|
112
|
+
[stefan]
|
|
113
|
+
|
|
81
114
|
1.6 - 2022-03-09
|
|
82
115
|
----------------
|
|
83
116
|
|
|
@@ -137,5 +170,3 @@ Changelog
|
|
|
137
170
|
|
|
138
171
|
- Initial release.
|
|
139
172
|
[stefan]
|
|
140
|
-
|
|
141
|
-
|
|
@@ -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
|
|
@@ -8,18 +8,18 @@ Author-email: stefan@epy.co.at
|
|
|
8
8
|
License: BSD-2-Clause
|
|
9
9
|
Project-URL: Documentation, https://apply.readthedocs.io/en/stable/
|
|
10
10
|
Keywords: apply,read,write,property,properties
|
|
11
|
-
Platform: UNKNOWN
|
|
12
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
13
12
|
Classifier: Intended Audience :: Developers
|
|
14
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
15
13
|
Classifier: Operating System :: OS Independent
|
|
16
14
|
Classifier: Programming Language :: Python
|
|
17
|
-
Classifier: Programming Language :: Python :: 2
|
|
18
15
|
Classifier: Programming Language :: Python :: 3
|
|
19
|
-
Requires-Python:
|
|
16
|
+
Requires-Python: >=3.5
|
|
20
17
|
Description-Content-Type: text/x-rst
|
|
21
|
-
Provides-Extra: docs
|
|
22
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
|
|
23
23
|
|
|
24
24
|
=====
|
|
25
25
|
apply
|
|
@@ -78,6 +78,39 @@ For further details please refer to the `API Documentation`_.
|
|
|
78
78
|
Changelog
|
|
79
79
|
=========
|
|
80
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
|
+
|
|
99
|
+
1.7 - 2023-09-14
|
|
100
|
+
----------------
|
|
101
|
+
|
|
102
|
+
- Update tox.ini for latest tox.
|
|
103
|
+
[stefan]
|
|
104
|
+
|
|
105
|
+
- Add GitHub CI workflow.
|
|
106
|
+
[stefan]
|
|
107
|
+
|
|
108
|
+
- Add .readthedocs.yaml file.
|
|
109
|
+
[stefan]
|
|
110
|
+
|
|
111
|
+
- Pin sphinx and sphinx-rtd-theme versions in docs extra.
|
|
112
|
+
[stefan]
|
|
113
|
+
|
|
81
114
|
1.6 - 2022-03-09
|
|
82
115
|
----------------
|
|
83
116
|
|
|
@@ -137,5 +170,3 @@ Changelog
|
|
|
137
170
|
|
|
138
171
|
- Initial release.
|
|
139
172
|
[stefan]
|
|
140
|
-
|
|
141
|
-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -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
|
|
@@ -22,7 +20,9 @@ license = BSD-2-Clause
|
|
|
22
20
|
|
|
23
21
|
[options]
|
|
24
22
|
packages = find:
|
|
25
|
-
|
|
23
|
+
include_package_data = false
|
|
24
|
+
zip_safe = false
|
|
25
|
+
python_requires = >=3.5
|
|
26
26
|
|
|
27
27
|
[options.packages.find]
|
|
28
28
|
exclude =
|
|
@@ -30,18 +30,10 @@ exclude =
|
|
|
30
30
|
|
|
31
31
|
[options.extras_require]
|
|
32
32
|
docs =
|
|
33
|
-
sphinx
|
|
34
|
-
sphinx-rtd-theme
|
|
33
|
+
sphinx == 9.1.0
|
|
34
|
+
sphinx-rtd-theme == 3.1.0
|
|
35
35
|
|
|
36
36
|
[egg_info]
|
|
37
37
|
tag_build =
|
|
38
38
|
tag_date = 0
|
|
39
39
|
|
|
40
|
-
[bdist_wheel]
|
|
41
|
-
universal = true
|
|
42
|
-
|
|
43
|
-
[build_sphinx]
|
|
44
|
-
source_dir = docs
|
|
45
|
-
build_dir = docs/_build
|
|
46
|
-
all_files = true
|
|
47
|
-
|
{apply-1.6 → apply-2.0}/tox.ini
RENAMED
|
@@ -4,14 +4,18 @@
|
|
|
4
4
|
# "pip install tox" and then run "tox" from this directory.
|
|
5
5
|
|
|
6
6
|
[tox]
|
|
7
|
-
envlist =
|
|
7
|
+
envlist = py310, py311, py312, py313, py314, py315, pypy311
|
|
8
8
|
|
|
9
9
|
[testenv]
|
|
10
|
-
|
|
10
|
+
package = wheel
|
|
11
|
+
wheel_build_env = .pkg
|
|
12
|
+
commands =
|
|
13
|
+
python -m unittest discover {posargs}
|
|
11
14
|
|
|
12
15
|
[testenv:docs]
|
|
13
16
|
extras = docs
|
|
14
|
-
commands =
|
|
17
|
+
commands =
|
|
18
|
+
python -m sphinx -a -d docs/_build/doctrees {posargs} docs docs/_build/html
|
|
15
19
|
|
|
16
20
|
[pytest]
|
|
17
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
|
{apply-1.6 → apply-2.0}/setup.py
RENAMED
|
File without changes
|