pkg-about 1.1.6__zip → 1.1.7__zip

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 (27) hide show
  1. {pkg_about-1.1.6 → pkg_about-1.1.7}/CHANGES.rst +4 -0
  2. {pkg_about-1.1.6 → pkg_about-1.1.7}/MANIFEST.in +1 -2
  3. {pkg_about-1.1.6 → pkg_about-1.1.7}/PKG-INFO +7 -3
  4. {pkg_about-1.1.6 → pkg_about-1.1.7}/pyproject.toml +12 -13
  5. {pkg_about-1.1.6 → pkg_about-1.1.7}/src/pkg_about/__about__.py +1 -2
  6. {pkg_about-1.1.6 → pkg_about-1.1.7}/src/pkg_about/__init__.py +1 -2
  7. {pkg_about-1.1.6 → pkg_about-1.1.7}/src/pkg_about/_about.py +1 -2
  8. {pkg_about-1.1.6 → pkg_about-1.1.7}/src/pkg_about.egg-info/PKG-INFO +7 -3
  9. {pkg_about-1.1.6 → pkg_about-1.1.7}/src/pkg_about.egg-info/requires.txt +2 -2
  10. {pkg_about-1.1.6 → pkg_about-1.1.7}/tests/__init__.py +1 -2
  11. {pkg_about-1.1.6 → pkg_about-1.1.7}/tests/__main__.py +1 -2
  12. {pkg_about-1.1.6 → pkg_about-1.1.7}/tests/test_main.py +2 -3
  13. {pkg_about-1.1.6 → pkg_about-1.1.7}/.readthedocs.yml +0 -0
  14. {pkg_about-1.1.6 → pkg_about-1.1.7}/LICENSE +0 -0
  15. {pkg_about-1.1.6 → pkg_about-1.1.7}/README.rst +0 -0
  16. {pkg_about-1.1.6 → pkg_about-1.1.7}/docs/CHANGES.rst +0 -0
  17. {pkg_about-1.1.6 → pkg_about-1.1.7}/docs/README.rst +0 -0
  18. {pkg_about-1.1.6 → pkg_about-1.1.7}/docs/_static/.keep +0 -0
  19. {pkg_about-1.1.6 → pkg_about-1.1.7}/docs/_templates/.keep +0 -0
  20. {pkg_about-1.1.6 → pkg_about-1.1.7}/docs/conf.py +0 -0
  21. {pkg_about-1.1.6 → pkg_about-1.1.7}/docs/index.rst +0 -0
  22. {pkg_about-1.1.6 → pkg_about-1.1.7}/setup.cfg +0 -0
  23. {pkg_about-1.1.6 → pkg_about-1.1.7}/src/pkg_about.egg-info/SOURCES.txt +0 -0
  24. {pkg_about-1.1.6 → pkg_about-1.1.7}/src/pkg_about.egg-info/dependency_links.txt +0 -0
  25. {pkg_about-1.1.6 → pkg_about-1.1.7}/src/pkg_about.egg-info/top_level.txt +0 -0
  26. {pkg_about-1.1.6 → pkg_about-1.1.7}/src/pkg_about.egg-info/zip-safe +0 -0
  27. {pkg_about-1.1.6 → pkg_about-1.1.7}/tests/data/.keep +0 -0
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.1.7 (2024-07-15)
5
+ ------------------
6
+ - Setup (dependencies) update.
7
+
4
8
  1.1.6 (2024-06-20)
5
9
  ------------------
6
10
  - Setup (dependencies) update.
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2020 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  include README.rst
6
5
  include CHANGES.rst
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pkg-about
3
- Version: 1.1.6
3
+ Version: 1.1.7
4
4
  Summary: Shares Python package metadata at runtime.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -33,12 +33,12 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
33
  Requires-Python: <4.0.0,>=3.8.10
34
34
  Description-Content-Type: text/x-rst; charset=UTF-8
35
35
  License-File: LICENSE
36
- Requires-Dist: setuptools>=70.1.1
36
+ Requires-Dist: setuptools>=70.3.0
37
37
  Requires-Dist: packaging>=24.1.0
38
38
  Requires-Dist: tomli>=2.0.1; python_version < "3.11"
39
39
  Provides-Extra: doc
40
40
  Requires-Dist: Sphinx>=7.1.2; extra == "doc"
41
- Requires-Dist: sphinx-toolbox>=3.6.0; extra == "doc"
41
+ Requires-Dist: sphinx-toolbox>=3.7.0; extra == "doc"
42
42
  Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
43
43
  Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
44
44
  Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
@@ -142,6 +142,10 @@ Authors
142
142
  Changelog
143
143
  =========
144
144
 
145
+ 1.1.7 (2024-07-15)
146
+ ------------------
147
+ - Setup (dependencies) update.
148
+
145
149
  1.1.6 (2024-06-20)
146
150
  ------------------
147
151
  - Setup (dependencies) update.
@@ -1,14 +1,13 @@
1
1
  # Copyright (c) 2020 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  [build-system]
6
5
  build-backend = 'setuptools.build_meta'
7
- requires = ['setuptools>=70.1.1', 'wheel>=0.43.0', 'packaging>=24.1.0', 'tox>=4.15.1']
6
+ requires = ['setuptools>=70.3.0', 'wheel>=0.43.0', 'packaging>=24.1.0', 'tox>=4.16.0']
8
7
 
9
8
  [project]
10
9
  name = 'pkg-about'
11
- version = '1.1.6'
10
+ version = '1.1.7'
12
11
  description = 'Shares Python package metadata at runtime.'
13
12
  urls.Homepage = 'https://pypi.org/project/pkg-about/'
14
13
  urls.Documentation = 'https://pkg-about.readthedocs.io/'
@@ -46,7 +45,7 @@ classifiers = [
46
45
  requires-python = '>=3.8.10,<4.0.0'
47
46
  dependencies = [
48
47
  # mandatory
49
- 'setuptools>=70.1.1',
48
+ 'setuptools>=70.3.0',
50
49
  'packaging>=24.1.0',
51
50
  'tomli>=2.0.1 ; python_version < "3.11"',
52
51
  # others
@@ -55,7 +54,7 @@ dynamic = ['readme']
55
54
  [project.optional-dependencies]
56
55
  doc = [
57
56
  'Sphinx>=7.1.2',
58
- 'sphinx-toolbox>=3.6.0',
57
+ 'sphinx-toolbox>=3.7.0',
59
58
  'sphinx-tabs>=3.4.5',
60
59
  'sphinx-copybutton>=0.5.2',
61
60
  'sphinxcontrib-spelling>=8.0.0',
@@ -168,7 +167,7 @@ labels =
168
167
  docs = docs
169
168
  build = py{38,39,310,311,312}, pypy{39,310}, docs, build
170
169
  deploy = py{38,39,310,311,312}, pypy{39,310}, docs, build, publish
171
- minversion = 4.15.1
170
+ minversion = 4.16.0
172
171
  skip_missing_interpreters = true
173
172
  requires =
174
173
  {[base]deps}
@@ -178,8 +177,8 @@ requires =
178
177
  [base]
179
178
  basepython = python3.12
180
179
  deps =
181
- pip>=24.1.0
182
- setuptools>=70.1.1
180
+ pip>=24.1.2
181
+ setuptools>=70.3.0
183
182
  wheel>=0.43.0
184
183
  packagesubdir = pkg_about
185
184
 
@@ -212,9 +211,9 @@ commands =
212
211
  {envpython} -m coverage html
213
212
  deps =
214
213
  {[testenv]deps}
215
- coverage>=7.5.4
214
+ coverage>=7.6.0
216
215
  covdefaults>=2.3.0
217
- diff-cover>=9.0.0
216
+ diff-cover>=9.1.0
218
217
 
219
218
  [testenv:docs]
220
219
  basepython = {[base]basepython}
@@ -237,7 +236,7 @@ commands =
237
236
  {envpython} -m twine check dist/*
238
237
  deps =
239
238
  {[testenv]deps}
240
- twine>=5.0.0
239
+ twine>=5.1.1
241
240
 
242
241
  [testenv:publish]
243
242
  depends = build
@@ -248,7 +247,7 @@ commands =
248
247
  {envpython} -m twine upload dist/*
249
248
  extras =
250
249
  deps =
251
- twine>=5.0.0
250
+ twine>=5.1.1
252
251
 
253
252
  [testenv:lint]
254
253
  basepython = {[base]basepython}
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2020 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  __import__("_about", globals=globals(), level=1).about()
6
5
  __copyright__ = f"Copyright (c) 2020-2024 {__author__}" # noqa
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2020 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  from .__about__ import * ; del __about__ # noqa
6
5
 
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2020 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  __all__ = ('about', 'about_from_setup')
6
5
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pkg-about
3
- Version: 1.1.6
3
+ Version: 1.1.7
4
4
  Summary: Shares Python package metadata at runtime.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -33,12 +33,12 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
33
  Requires-Python: <4.0.0,>=3.8.10
34
34
  Description-Content-Type: text/x-rst; charset=UTF-8
35
35
  License-File: LICENSE
36
- Requires-Dist: setuptools>=70.1.1
36
+ Requires-Dist: setuptools>=70.3.0
37
37
  Requires-Dist: packaging>=24.1.0
38
38
  Requires-Dist: tomli>=2.0.1; python_version < "3.11"
39
39
  Provides-Extra: doc
40
40
  Requires-Dist: Sphinx>=7.1.2; extra == "doc"
41
- Requires-Dist: sphinx-toolbox>=3.6.0; extra == "doc"
41
+ Requires-Dist: sphinx-toolbox>=3.7.0; extra == "doc"
42
42
  Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
43
43
  Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
44
44
  Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
@@ -142,6 +142,10 @@ Authors
142
142
  Changelog
143
143
  =========
144
144
 
145
+ 1.1.7 (2024-07-15)
146
+ ------------------
147
+ - Setup (dependencies) update.
148
+
145
149
  1.1.6 (2024-06-20)
146
150
  ------------------
147
151
  - Setup (dependencies) update.
@@ -1,4 +1,4 @@
1
- setuptools>=70.1.1
1
+ setuptools>=70.3.0
2
2
  packaging>=24.1.0
3
3
 
4
4
  [:python_version < "3.11"]
@@ -6,7 +6,7 @@ tomli>=2.0.1
6
6
 
7
7
  [doc]
8
8
  Sphinx>=7.1.2
9
- sphinx-toolbox>=3.6.0
9
+ sphinx-toolbox>=3.7.0
10
10
  sphinx-tabs>=3.4.5
11
11
  sphinx-copybutton>=0.5.2
12
12
  sphinxcontrib-spelling>=8.0.0
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2020 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  __all__ = ('top_dir', 'test_dir')
6
5
 
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2020 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  import unittest
6
5
  import sys
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2020 Adam Karpierz
2
- # Licensed under the zlib/libpng License
3
- # https://opensource.org/license/zlib
2
+ # SPDX-License-Identifier: Zlib
4
3
 
5
4
  import unittest
6
5
  from pathlib import Path
@@ -12,7 +11,7 @@ class MainTestCase(unittest.TestCase):
12
11
 
13
12
  @classmethod
14
13
  def setUpClass(cls):
15
- cls.version_expected = "1.1.6"
14
+ cls.version_expected = "1.1.7"
16
15
  version_parts = cls.version_expected.split(".")
17
16
  cls.version_major_expected = int(version_parts[0])
18
17
  cls.version_minor_expected = int(version_parts[1])
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