pkg-about 1.1.6__zip → 1.1.8__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.8}/.readthedocs.yml +1 -1
  2. {pkg_about-1.1.6 → pkg_about-1.1.8}/CHANGES.rst +9 -0
  3. {pkg_about-1.1.6 → pkg_about-1.1.8}/MANIFEST.in +1 -2
  4. {pkg_about-1.1.6 → pkg_about-1.1.8}/PKG-INFO +13 -3
  5. {pkg_about-1.1.6 → pkg_about-1.1.8}/pyproject.toml +20 -20
  6. {pkg_about-1.1.6 → pkg_about-1.1.8}/src/pkg_about/__about__.py +1 -2
  7. {pkg_about-1.1.6 → pkg_about-1.1.8}/src/pkg_about/__init__.py +1 -2
  8. {pkg_about-1.1.6 → pkg_about-1.1.8}/src/pkg_about/_about.py +1 -2
  9. {pkg_about-1.1.6 → pkg_about-1.1.8}/src/pkg_about.egg-info/PKG-INFO +13 -3
  10. {pkg_about-1.1.6 → pkg_about-1.1.8}/src/pkg_about.egg-info/requires.txt +2 -2
  11. {pkg_about-1.1.6 → pkg_about-1.1.8}/tests/__init__.py +1 -2
  12. {pkg_about-1.1.6 → pkg_about-1.1.8}/tests/__main__.py +1 -2
  13. {pkg_about-1.1.6 → pkg_about-1.1.8}/tests/test_main.py +2 -3
  14. {pkg_about-1.1.6 → pkg_about-1.1.8}/LICENSE +0 -0
  15. {pkg_about-1.1.6 → pkg_about-1.1.8}/README.rst +0 -0
  16. {pkg_about-1.1.6 → pkg_about-1.1.8}/docs/CHANGES.rst +0 -0
  17. {pkg_about-1.1.6 → pkg_about-1.1.8}/docs/README.rst +0 -0
  18. {pkg_about-1.1.6 → pkg_about-1.1.8}/docs/_static/.keep +0 -0
  19. {pkg_about-1.1.6 → pkg_about-1.1.8}/docs/_templates/.keep +0 -0
  20. {pkg_about-1.1.6 → pkg_about-1.1.8}/docs/conf.py +0 -0
  21. {pkg_about-1.1.6 → pkg_about-1.1.8}/docs/index.rst +0 -0
  22. {pkg_about-1.1.6 → pkg_about-1.1.8}/setup.cfg +0 -0
  23. {pkg_about-1.1.6 → pkg_about-1.1.8}/src/pkg_about.egg-info/SOURCES.txt +0 -0
  24. {pkg_about-1.1.6 → pkg_about-1.1.8}/src/pkg_about.egg-info/dependency_links.txt +0 -0
  25. {pkg_about-1.1.6 → pkg_about-1.1.8}/src/pkg_about.egg-info/top_level.txt +0 -0
  26. {pkg_about-1.1.6 → pkg_about-1.1.8}/src/pkg_about.egg-info/zip-safe +0 -0
  27. {pkg_about-1.1.6 → pkg_about-1.1.8}/tests/data/.keep +0 -0
@@ -2,7 +2,7 @@ version: 2
2
2
  build:
3
3
  os: "ubuntu-22.04"
4
4
  tools:
5
- python: "3.11"
5
+ python: "3.12"
6
6
  python:
7
7
  install:
8
8
  - method: pip
@@ -1,6 +1,15 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 1.1.8 (2024-08-13)
5
+ ------------------
6
+ - Add support for Python 3.13
7
+ - Setup (dependencies) update.
8
+
9
+ 1.1.7 (2024-07-15)
10
+ ------------------
11
+ - Setup (dependencies) update.
12
+
4
13
  1.1.6 (2024-06-20)
5
14
  ------------------
6
15
  - 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.8
4
4
  Summary: Shares Python package metadata at runtime.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -26,6 +26,7 @@ Classifier: Programming Language :: Python :: 3.9
26
26
  Classifier: Programming Language :: Python :: 3.10
27
27
  Classifier: Programming Language :: Python :: 3.11
28
28
  Classifier: Programming Language :: Python :: 3.12
29
+ Classifier: Programming Language :: Python :: 3.13
29
30
  Classifier: Programming Language :: Python :: 3 :: Only
30
31
  Classifier: Programming Language :: Python :: Implementation :: CPython
31
32
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -33,12 +34,12 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
34
  Requires-Python: <4.0.0,>=3.8.10
34
35
  Description-Content-Type: text/x-rst; charset=UTF-8
35
36
  License-File: LICENSE
36
- Requires-Dist: setuptools>=70.1.1
37
+ Requires-Dist: setuptools>=72.2.0
37
38
  Requires-Dist: packaging>=24.1.0
38
39
  Requires-Dist: tomli>=2.0.1; python_version < "3.11"
39
40
  Provides-Extra: doc
40
41
  Requires-Dist: Sphinx>=7.1.2; extra == "doc"
41
- Requires-Dist: sphinx-toolbox>=3.6.0; extra == "doc"
42
+ Requires-Dist: sphinx-toolbox>=3.7.0; extra == "doc"
42
43
  Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
43
44
  Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
44
45
  Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
@@ -142,6 +143,15 @@ Authors
142
143
  Changelog
143
144
  =========
144
145
 
146
+ 1.1.8 (2024-08-13)
147
+ ------------------
148
+ - Add support for Python 3.13
149
+ - Setup (dependencies) update.
150
+
151
+ 1.1.7 (2024-07-15)
152
+ ------------------
153
+ - Setup (dependencies) update.
154
+
145
155
  1.1.6 (2024-06-20)
146
156
  ------------------
147
157
  - 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>=72.2.0', 'wheel>=0.44.0', 'packaging>=24.1.0', 'tox>=4.18.0']
8
7
 
9
8
  [project]
10
9
  name = 'pkg-about'
11
- version = '1.1.6'
10
+ version = '1.1.8'
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/'
@@ -38,6 +37,7 @@ classifiers = [
38
37
  'Programming Language :: Python :: 3.10',
39
38
  'Programming Language :: Python :: 3.11',
40
39
  'Programming Language :: Python :: 3.12',
40
+ 'Programming Language :: Python :: 3.13',
41
41
  'Programming Language :: Python :: 3 :: Only',
42
42
  'Programming Language :: Python :: Implementation :: CPython',
43
43
  'Programming Language :: Python :: Implementation :: PyPy',
@@ -46,7 +46,7 @@ classifiers = [
46
46
  requires-python = '>=3.8.10,<4.0.0'
47
47
  dependencies = [
48
48
  # mandatory
49
- 'setuptools>=70.1.1',
49
+ 'setuptools>=72.2.0',
50
50
  'packaging>=24.1.0',
51
51
  'tomli>=2.0.1 ; python_version < "3.11"',
52
52
  # others
@@ -55,7 +55,7 @@ dynamic = ['readme']
55
55
  [project.optional-dependencies]
56
56
  doc = [
57
57
  'Sphinx>=7.1.2',
58
- 'sphinx-toolbox>=3.6.0',
58
+ 'sphinx-toolbox>=3.7.0',
59
59
  'sphinx-tabs>=3.4.5',
60
60
  'sphinx-copybutton>=0.5.2',
61
61
  'sphinxcontrib-spelling>=8.0.0',
@@ -159,16 +159,16 @@ count = true
159
159
  [tool.tox]
160
160
  legacy_tox_ini = """
161
161
  [tox]
162
- envlist = py{38,39,310,311,312}, pypy{39,310}, docs
162
+ envlist = py{38,39,310,311,312,313}, pypy{39,310}, docs
163
163
  labels =
164
- py = py{38,39,310,311,312}, pypy{39,310}
164
+ py = py{38,39,310,311,312,313}, pypy{39,310}
165
165
  prepare = prepare
166
166
  coverage = coverage
167
167
  lint = lint
168
168
  docs = docs
169
- build = py{38,39,310,311,312}, pypy{39,310}, docs, build
170
- deploy = py{38,39,310,311,312}, pypy{39,310}, docs, build, publish
171
- minversion = 4.15.1
169
+ build = py{38,39,310,311,312,313}, pypy{39,310}, docs, build
170
+ deploy = py{38,39,310,311,312,313}, pypy{39,310}, docs, build, publish
171
+ minversion = 4.18.0
172
172
  skip_missing_interpreters = true
173
173
  requires =
174
174
  {[base]deps}
@@ -178,9 +178,9 @@ requires =
178
178
  [base]
179
179
  basepython = python3.12
180
180
  deps =
181
- pip>=24.1.0
182
- setuptools>=70.1.1
183
- wheel>=0.43.0
181
+ pip>=24.2.0
182
+ setuptools>=72.2.0
183
+ wheel>=0.44.0
184
184
  packagesubdir = pkg_about
185
185
 
186
186
  [testenv]
@@ -212,9 +212,9 @@ commands =
212
212
  {envpython} -m coverage html
213
213
  deps =
214
214
  {[testenv]deps}
215
- coverage>=7.5.4
215
+ coverage>=7.6.1
216
216
  covdefaults>=2.3.0
217
- diff-cover>=9.0.0
217
+ diff-cover>=9.1.1
218
218
 
219
219
  [testenv:docs]
220
220
  basepython = {[base]basepython}
@@ -228,7 +228,7 @@ extras = doc
228
228
  deps =
229
229
 
230
230
  [testenv:build]
231
- depends = py{38,39,310,311,312}, pypy{39,310}, docs
231
+ depends = py{38,39,310,311,312,313}, pypy{39,310}, docs
232
232
  basepython = {[base]basepython}
233
233
  commands =
234
234
  {envpython} -W ignore -c "from setuptools import setup ; setup()" --quiet sdist --formats=zip
@@ -237,7 +237,7 @@ commands =
237
237
  {envpython} -m twine check dist/*
238
238
  deps =
239
239
  {[testenv]deps}
240
- twine>=5.0.0
240
+ twine>=5.1.1
241
241
 
242
242
  [testenv:publish]
243
243
  depends = build
@@ -248,7 +248,7 @@ commands =
248
248
  {envpython} -m twine upload dist/*
249
249
  extras =
250
250
  deps =
251
- twine>=5.0.0
251
+ twine>=5.1.1
252
252
 
253
253
  [testenv:lint]
254
254
  basepython = {[base]basepython}
@@ -257,7 +257,7 @@ commands =
257
257
  extras =
258
258
  deps =
259
259
  {[testenv]deps}
260
- flake8>=7.1.0
260
+ flake8>=7.1.1
261
261
  flake8-pyproject>=1.2.3
262
262
  flake8-docstrings>=1.7.0
263
263
  pep8-naming>=0.14.1
@@ -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.8
4
4
  Summary: Shares Python package metadata at runtime.
5
5
  Author: Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -26,6 +26,7 @@ Classifier: Programming Language :: Python :: 3.9
26
26
  Classifier: Programming Language :: Python :: 3.10
27
27
  Classifier: Programming Language :: Python :: 3.11
28
28
  Classifier: Programming Language :: Python :: 3.12
29
+ Classifier: Programming Language :: Python :: 3.13
29
30
  Classifier: Programming Language :: Python :: 3 :: Only
30
31
  Classifier: Programming Language :: Python :: Implementation :: CPython
31
32
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -33,12 +34,12 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
34
  Requires-Python: <4.0.0,>=3.8.10
34
35
  Description-Content-Type: text/x-rst; charset=UTF-8
35
36
  License-File: LICENSE
36
- Requires-Dist: setuptools>=70.1.1
37
+ Requires-Dist: setuptools>=72.2.0
37
38
  Requires-Dist: packaging>=24.1.0
38
39
  Requires-Dist: tomli>=2.0.1; python_version < "3.11"
39
40
  Provides-Extra: doc
40
41
  Requires-Dist: Sphinx>=7.1.2; extra == "doc"
41
- Requires-Dist: sphinx-toolbox>=3.6.0; extra == "doc"
42
+ Requires-Dist: sphinx-toolbox>=3.7.0; extra == "doc"
42
43
  Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
43
44
  Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
44
45
  Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
@@ -142,6 +143,15 @@ Authors
142
143
  Changelog
143
144
  =========
144
145
 
146
+ 1.1.8 (2024-08-13)
147
+ ------------------
148
+ - Add support for Python 3.13
149
+ - Setup (dependencies) update.
150
+
151
+ 1.1.7 (2024-07-15)
152
+ ------------------
153
+ - Setup (dependencies) update.
154
+
145
155
  1.1.6 (2024-06-20)
146
156
  ------------------
147
157
  - Setup (dependencies) update.
@@ -1,4 +1,4 @@
1
- setuptools>=70.1.1
1
+ setuptools>=72.2.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.8"
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