pkg-about 1.1.7__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.7 → pkg_about-1.1.8}/.readthedocs.yml +1 -1
  2. {pkg_about-1.1.7 → pkg_about-1.1.8}/CHANGES.rst +5 -0
  3. {pkg_about-1.1.7 → pkg_about-1.1.8}/PKG-INFO +8 -2
  4. {pkg_about-1.1.7 → pkg_about-1.1.8}/pyproject.toml +16 -15
  5. {pkg_about-1.1.7 → pkg_about-1.1.8}/src/pkg_about.egg-info/PKG-INFO +8 -2
  6. {pkg_about-1.1.7 → pkg_about-1.1.8}/src/pkg_about.egg-info/requires.txt +1 -1
  7. {pkg_about-1.1.7 → pkg_about-1.1.8}/tests/test_main.py +1 -1
  8. {pkg_about-1.1.7 → pkg_about-1.1.8}/LICENSE +0 -0
  9. {pkg_about-1.1.7 → pkg_about-1.1.8}/MANIFEST.in +0 -0
  10. {pkg_about-1.1.7 → pkg_about-1.1.8}/README.rst +0 -0
  11. {pkg_about-1.1.7 → pkg_about-1.1.8}/docs/CHANGES.rst +0 -0
  12. {pkg_about-1.1.7 → pkg_about-1.1.8}/docs/README.rst +0 -0
  13. {pkg_about-1.1.7 → pkg_about-1.1.8}/docs/_static/.keep +0 -0
  14. {pkg_about-1.1.7 → pkg_about-1.1.8}/docs/_templates/.keep +0 -0
  15. {pkg_about-1.1.7 → pkg_about-1.1.8}/docs/conf.py +0 -0
  16. {pkg_about-1.1.7 → pkg_about-1.1.8}/docs/index.rst +0 -0
  17. {pkg_about-1.1.7 → pkg_about-1.1.8}/setup.cfg +0 -0
  18. {pkg_about-1.1.7 → pkg_about-1.1.8}/src/pkg_about/__about__.py +0 -0
  19. {pkg_about-1.1.7 → pkg_about-1.1.8}/src/pkg_about/__init__.py +0 -0
  20. {pkg_about-1.1.7 → pkg_about-1.1.8}/src/pkg_about/_about.py +0 -0
  21. {pkg_about-1.1.7 → pkg_about-1.1.8}/src/pkg_about.egg-info/SOURCES.txt +0 -0
  22. {pkg_about-1.1.7 → pkg_about-1.1.8}/src/pkg_about.egg-info/dependency_links.txt +0 -0
  23. {pkg_about-1.1.7 → pkg_about-1.1.8}/src/pkg_about.egg-info/top_level.txt +0 -0
  24. {pkg_about-1.1.7 → pkg_about-1.1.8}/src/pkg_about.egg-info/zip-safe +0 -0
  25. {pkg_about-1.1.7 → pkg_about-1.1.8}/tests/__init__.py +0 -0
  26. {pkg_about-1.1.7 → pkg_about-1.1.8}/tests/__main__.py +0 -0
  27. {pkg_about-1.1.7 → 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,11 @@
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
+
4
9
  1.1.7 (2024-07-15)
5
10
  ------------------
6
11
  - Setup (dependencies) update.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pkg-about
3
- Version: 1.1.7
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,7 +34,7 @@ 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.3.0
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
@@ -142,6 +143,11 @@ 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
+
145
151
  1.1.7 (2024-07-15)
146
152
  ------------------
147
153
  - Setup (dependencies) update.
@@ -3,11 +3,11 @@
3
3
 
4
4
  [build-system]
5
5
  build-backend = 'setuptools.build_meta'
6
- requires = ['setuptools>=70.3.0', 'wheel>=0.43.0', 'packaging>=24.1.0', 'tox>=4.16.0']
6
+ requires = ['setuptools>=72.2.0', 'wheel>=0.44.0', 'packaging>=24.1.0', 'tox>=4.18.0']
7
7
 
8
8
  [project]
9
9
  name = 'pkg-about'
10
- version = '1.1.7'
10
+ version = '1.1.8'
11
11
  description = 'Shares Python package metadata at runtime.'
12
12
  urls.Homepage = 'https://pypi.org/project/pkg-about/'
13
13
  urls.Documentation = 'https://pkg-about.readthedocs.io/'
@@ -37,6 +37,7 @@ classifiers = [
37
37
  'Programming Language :: Python :: 3.10',
38
38
  'Programming Language :: Python :: 3.11',
39
39
  'Programming Language :: Python :: 3.12',
40
+ 'Programming Language :: Python :: 3.13',
40
41
  'Programming Language :: Python :: 3 :: Only',
41
42
  'Programming Language :: Python :: Implementation :: CPython',
42
43
  'Programming Language :: Python :: Implementation :: PyPy',
@@ -45,7 +46,7 @@ classifiers = [
45
46
  requires-python = '>=3.8.10,<4.0.0'
46
47
  dependencies = [
47
48
  # mandatory
48
- 'setuptools>=70.3.0',
49
+ 'setuptools>=72.2.0',
49
50
  'packaging>=24.1.0',
50
51
  'tomli>=2.0.1 ; python_version < "3.11"',
51
52
  # others
@@ -158,16 +159,16 @@ count = true
158
159
  [tool.tox]
159
160
  legacy_tox_ini = """
160
161
  [tox]
161
- envlist = py{38,39,310,311,312}, pypy{39,310}, docs
162
+ envlist = py{38,39,310,311,312,313}, pypy{39,310}, docs
162
163
  labels =
163
- py = py{38,39,310,311,312}, pypy{39,310}
164
+ py = py{38,39,310,311,312,313}, pypy{39,310}
164
165
  prepare = prepare
165
166
  coverage = coverage
166
167
  lint = lint
167
168
  docs = docs
168
- build = py{38,39,310,311,312}, pypy{39,310}, docs, build
169
- deploy = py{38,39,310,311,312}, pypy{39,310}, docs, build, publish
170
- minversion = 4.16.0
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
171
172
  skip_missing_interpreters = true
172
173
  requires =
173
174
  {[base]deps}
@@ -177,9 +178,9 @@ requires =
177
178
  [base]
178
179
  basepython = python3.12
179
180
  deps =
180
- pip>=24.1.2
181
- setuptools>=70.3.0
182
- wheel>=0.43.0
181
+ pip>=24.2.0
182
+ setuptools>=72.2.0
183
+ wheel>=0.44.0
183
184
  packagesubdir = pkg_about
184
185
 
185
186
  [testenv]
@@ -211,9 +212,9 @@ commands =
211
212
  {envpython} -m coverage html
212
213
  deps =
213
214
  {[testenv]deps}
214
- coverage>=7.6.0
215
+ coverage>=7.6.1
215
216
  covdefaults>=2.3.0
216
- diff-cover>=9.1.0
217
+ diff-cover>=9.1.1
217
218
 
218
219
  [testenv:docs]
219
220
  basepython = {[base]basepython}
@@ -227,7 +228,7 @@ extras = doc
227
228
  deps =
228
229
 
229
230
  [testenv:build]
230
- depends = py{38,39,310,311,312}, pypy{39,310}, docs
231
+ depends = py{38,39,310,311,312,313}, pypy{39,310}, docs
231
232
  basepython = {[base]basepython}
232
233
  commands =
233
234
  {envpython} -W ignore -c "from setuptools import setup ; setup()" --quiet sdist --formats=zip
@@ -256,7 +257,7 @@ commands =
256
257
  extras =
257
258
  deps =
258
259
  {[testenv]deps}
259
- flake8>=7.1.0
260
+ flake8>=7.1.1
260
261
  flake8-pyproject>=1.2.3
261
262
  flake8-docstrings>=1.7.0
262
263
  pep8-naming>=0.14.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pkg-about
3
- Version: 1.1.7
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,7 +34,7 @@ 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.3.0
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
@@ -142,6 +143,11 @@ 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
+
145
151
  1.1.7 (2024-07-15)
146
152
  ------------------
147
153
  - Setup (dependencies) update.
@@ -1,4 +1,4 @@
1
- setuptools>=70.3.0
1
+ setuptools>=72.2.0
2
2
  packaging>=24.1.0
3
3
 
4
4
  [:python_version < "3.11"]
@@ -11,7 +11,7 @@ class MainTestCase(unittest.TestCase):
11
11
 
12
12
  @classmethod
13
13
  def setUpClass(cls):
14
- cls.version_expected = "1.1.7"
14
+ cls.version_expected = "1.1.8"
15
15
  version_parts = cls.version_expected.split(".")
16
16
  cls.version_major_expected = int(version_parts[0])
17
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
File without changes
File without changes