let3 1.0.23__zip → 1.0.25__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 (28) hide show
  1. {let3-1.0.23 → let3-1.0.25}/.readthedocs.yml +1 -1
  2. {let3-1.0.23 → let3-1.0.25}/CHANGES.rst +6 -1
  3. {let3-1.0.23 → let3-1.0.25}/MANIFEST.in +1 -2
  4. {let3-1.0.23 → let3-1.0.25}/PKG-INFO +20 -14
  5. {let3-1.0.23 → let3-1.0.25}/README.rst +1 -1
  6. {let3-1.0.23 → let3-1.0.25}/pyproject.toml +34 -34
  7. {let3-1.0.23 → let3-1.0.25}/src/let/__about__.py +2 -2
  8. {let3-1.0.23 → let3-1.0.25}/src/let/__init__.py +2 -2
  9. {let3-1.0.23 → let3-1.0.25}/src/let/_let.py +1 -2
  10. {let3-1.0.23 → let3-1.0.25}/src/let3.egg-info/PKG-INFO +20 -14
  11. let3-1.0.25/src/let3.egg-info/requires.txt +16 -0
  12. {let3-1.0.23 → let3-1.0.25}/tests/__init__.py +1 -2
  13. {let3-1.0.23 → let3-1.0.25}/tests/__main__.py +1 -2
  14. {let3-1.0.23 → let3-1.0.25}/tests/test_main.py +1 -2
  15. let3-1.0.23/src/let3.egg-info/requires.txt +0 -16
  16. {let3-1.0.23 → let3-1.0.25}/LICENSE +0 -0
  17. {let3-1.0.23 → let3-1.0.25}/docs/CHANGES.rst +0 -0
  18. {let3-1.0.23 → let3-1.0.25}/docs/README.rst +0 -0
  19. {let3-1.0.23 → let3-1.0.25}/docs/_static/.keep +0 -0
  20. {let3-1.0.23 → let3-1.0.25}/docs/_templates/.keep +0 -0
  21. {let3-1.0.23 → let3-1.0.25}/docs/conf.py +0 -0
  22. {let3-1.0.23 → let3-1.0.25}/docs/index.rst +0 -0
  23. {let3-1.0.23 → let3-1.0.25}/setup.cfg +0 -0
  24. {let3-1.0.23 → let3-1.0.25}/src/let3.egg-info/SOURCES.txt +0 -0
  25. {let3-1.0.23 → let3-1.0.25}/src/let3.egg-info/dependency_links.txt +0 -0
  26. {let3-1.0.23 → let3-1.0.25}/src/let3.egg-info/top_level.txt +0 -0
  27. {let3-1.0.23 → let3-1.0.25}/src/let3.egg-info/zip-safe +0 -0
  28. {let3-1.0.23 → let3-1.0.25}/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,7 +1,12 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
- 1.0.23 (2024-01-26)
4
+ 1.0.25 (2024-08-13)
5
+ -------------------
6
+ - Add support for Python 3.13
7
+ - Setup (dependencies) update.
8
+
9
+ 1.0.24 (2024-01-30)
5
10
  -------------------
6
11
  - Setup update (now based on tox >= 4.0).
7
12
  - Add support for Python 3.12
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the MIT License
3
- # https://opensource.org/license/mit
2
+ # SPDX-License-Identifier: MIT
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: let3
3
- Version: 1.0.23
3
+ Version: 1.0.25
4
4
  Summary: Assign variables wherever, whenever you want.
5
5
  Author: Taylor Marks, Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -26,27 +26,28 @@ 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
32
33
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
- Requires-Python: <4.0.0,>=3.8.1
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>=68.2.2
37
- Requires-Dist: pkg-about>=1.1.5
37
+ Requires-Dist: setuptools>=72.2.0
38
+ Requires-Dist: pkg-about>=1.1.8
38
39
  Provides-Extra: doc
39
40
  Requires-Dist: Sphinx>=7.1.2; extra == "doc"
40
- Requires-Dist: sphinx-toolbox>=3.5.0; extra == "doc"
41
- Requires-Dist: sphinx-tabs>=3.4.1; extra == "doc"
42
- Requires-Dist: sphinx-copybutton>=0.5.1; extra == "doc"
43
- Requires-Dist: sphinxcontrib-spelling>=7.7.0; extra == "doc"
44
- Requires-Dist: sphinx-lint>=0.6.7; extra == "doc"
41
+ Requires-Dist: sphinx-toolbox>=3.7.0; extra == "doc"
42
+ Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
43
+ Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
44
+ Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
45
+ Requires-Dist: sphinx-lint>=0.9.1; extra == "doc"
45
46
  Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
46
- Requires-Dist: nbsphinx>=0.8.10; extra == "doc"
47
+ Requires-Dist: nbsphinx>=0.9.4; extra == "doc"
47
48
  Provides-Extra: test
48
- Requires-Dist: deepdiff>=6.7.1; extra == "test"
49
- Requires-Dist: rich>=13.7.0; extra == "test"
49
+ Requires-Dist: deepdiff>=7.0.1; extra == "test"
50
+ Requires-Dist: rich>=13.7.1; extra == "test"
50
51
 
51
52
  let3
52
53
  ====
@@ -123,7 +124,7 @@ Installation
123
124
 
124
125
  Prerequisites:
125
126
 
126
- + Python 3.7 or higher
127
+ + Python 3.8 or higher
127
128
 
128
129
  * https://www.python.org/
129
130
 
@@ -195,7 +196,12 @@ Authors
195
196
  Changelog
196
197
  =========
197
198
 
198
- 1.0.23 (2024-01-26)
199
+ 1.0.25 (2024-08-13)
200
+ -------------------
201
+ - Add support for Python 3.13
202
+ - Setup (dependencies) update.
203
+
204
+ 1.0.24 (2024-01-30)
199
205
  -------------------
200
206
  - Setup update (now based on tox >= 4.0).
201
207
  - Add support for Python 3.12
@@ -73,7 +73,7 @@ Installation
73
73
 
74
74
  Prerequisites:
75
75
 
76
- + Python 3.7 or higher
76
+ + Python 3.8 or higher
77
77
 
78
78
  * https://www.python.org/
79
79
 
@@ -1,14 +1,13 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the MIT License
3
- # https://opensource.org/license/mit
2
+ # SPDX-License-Identifier: MIT
4
3
 
5
4
  [build-system]
6
5
  build-backend = 'setuptools.build_meta'
7
- requires = ['setuptools>=68.2.2', 'wheel>=0.42.0', 'packaging>=23.2.0', 'tox>=4.11.3']
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 = 'let3'
11
- version = '1.0.23'
10
+ version = '1.0.25'
12
11
  description = 'Assign variables wherever, whenever you want.'
13
12
  urls.Homepage = 'https://pypi.org/project/let3/'
14
13
  urls.Documentation = 'https://let3.readthedocs.io/'
@@ -39,33 +38,34 @@ classifiers = [
39
38
  'Programming Language :: Python :: 3.10',
40
39
  'Programming Language :: Python :: 3.11',
41
40
  'Programming Language :: Python :: 3.12',
41
+ 'Programming Language :: Python :: 3.13',
42
42
  'Programming Language :: Python :: 3 :: Only',
43
43
  'Programming Language :: Python :: Implementation :: CPython',
44
44
  'Programming Language :: Python :: Implementation :: PyPy',
45
45
  'Topic :: Software Development :: Libraries :: Python Modules',
46
46
  ]
47
- requires-python = '>=3.8.1,<4.0.0'
47
+ requires-python = '>=3.8.10,<4.0.0'
48
48
  dependencies = [
49
49
  # mandatory
50
- 'setuptools>=68.2.2',
51
- 'pkg-about>=1.1.5',
50
+ 'setuptools>=72.2.0',
51
+ 'pkg-about>=1.1.8',
52
52
  # others
53
53
  ]
54
54
  dynamic = ['readme']
55
55
  [project.optional-dependencies]
56
56
  doc = [
57
57
  'Sphinx>=7.1.2',
58
- 'sphinx-toolbox>=3.5.0',
59
- 'sphinx-tabs>=3.4.1',
60
- 'sphinx-copybutton>=0.5.1',
61
- 'sphinxcontrib-spelling>=7.7.0',
62
- 'sphinx-lint>=0.6.7',
58
+ 'sphinx-toolbox>=3.7.0',
59
+ 'sphinx-tabs>=3.4.5',
60
+ 'sphinx-copybutton>=0.5.2',
61
+ 'sphinxcontrib-spelling>=8.0.0',
62
+ 'sphinx-lint>=0.9.1',
63
63
  'restructuredtext-lint>=1.4.0',
64
- 'nbsphinx>=0.8.10',
64
+ 'nbsphinx>=0.9.4',
65
65
  ]
66
66
  test = [
67
- 'deepdiff>=6.7.1',
68
- 'rich>=13.7.0',
67
+ 'deepdiff>=7.0.1',
68
+ 'rich>=13.7.1',
69
69
  ]
70
70
 
71
71
  [project.scripts]
@@ -159,29 +159,29 @@ 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.11.3
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}
175
- virtualenv>=20.25.0
176
- tox-backtick>=0.4.4
175
+ virtualenv>=20.26.3
176
+ tox-backtick>=0.4.6
177
177
  tox-tags>=0.2.0
178
178
 
179
179
  [base]
180
- basepython = python3.11
180
+ basepython = python3.12
181
181
  deps =
182
- pip>=23.3.2
183
- setuptools>=68.2.2
184
- wheel>=0.42.0
182
+ pip>=24.2.0
183
+ setuptools>=72.2.0
184
+ wheel>=0.44.0
185
185
  packagesubdir = let
186
186
 
187
187
  [testenv]
@@ -213,9 +213,9 @@ commands =
213
213
  {envpython} -m coverage html
214
214
  deps =
215
215
  {[testenv]deps}
216
- coverage>=7.4.0
216
+ coverage>=7.6.1
217
217
  covdefaults>=2.3.0
218
- diff-cover>=7.7.0
218
+ diff-cover>=9.1.1
219
219
 
220
220
  [testenv:docs]
221
221
  basepython = {[base]basepython}
@@ -229,7 +229,7 @@ extras = doc
229
229
  deps =
230
230
 
231
231
  [testenv:build]
232
- depends = py{38,39,310,311,312}, pypy{39,310}, docs
232
+ depends = py{38,39,310,311,312,313}, pypy{39,310}, docs
233
233
  basepython = {[base]basepython}
234
234
  setenv =
235
235
  {[testenv]setenv}
@@ -243,7 +243,7 @@ commands =
243
243
  {envpython} -m twine check dist/*
244
244
  deps =
245
245
  {[testenv]deps}
246
- twine>=4.0.2
246
+ twine>=5.1.1
247
247
 
248
248
  [testenv:publish]
249
249
  depends = build
@@ -254,7 +254,7 @@ commands =
254
254
  {envpython} -m twine upload dist/*
255
255
  extras =
256
256
  deps =
257
- twine>=4.0.2
257
+ twine>=5.1.1
258
258
 
259
259
  [testenv:lint]
260
260
  basepython = {[base]basepython}
@@ -263,10 +263,10 @@ commands =
263
263
  extras =
264
264
  deps =
265
265
  {[testenv]deps}
266
- flake8>=7.0.0
266
+ flake8>=7.1.1
267
267
  flake8-pyproject>=1.2.3
268
268
  flake8-docstrings>=1.7.0
269
- pep8-naming>=0.13.3
270
- flake8-builtins>=2.2.0
269
+ pep8-naming>=0.14.1
270
+ flake8-builtins>=2.5.0
271
271
  flake8-deprecated>=2.2.1
272
272
  """
@@ -1,6 +1,6 @@
1
+ # Copyright (c) 2016 Taylor Marks
1
2
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the MIT License
3
- # https://opensource.org/license/mit
3
+ # SPDX-License-Identifier: MIT
4
4
 
5
5
  __import__("pkg_about").about("let3")
6
6
  __copyright__ = f"Copyright (c) 2016-2024 {__author__}" # noqa
@@ -1,6 +1,6 @@
1
+ # Copyright (c) 2016 Taylor Marks
1
2
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the MIT License
3
- # https://opensource.org/license/mit
3
+ # SPDX-License-Identifier: MIT
4
4
 
5
5
  from .__about__ import * ; del __about__ # noqa
6
6
 
@@ -1,7 +1,6 @@
1
1
  # Copyright (c) 2016 Taylor Marks
2
2
  # Copyright (c) 2016 Adam Karpierz
3
- # Licensed under the MIT License
4
- # https://opensource.org/license/mit
3
+ # SPDX-License-Identifier: MIT
5
4
 
6
5
  __all__ = ('let',)
7
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: let3
3
- Version: 1.0.23
3
+ Version: 1.0.25
4
4
  Summary: Assign variables wherever, whenever you want.
5
5
  Author: Taylor Marks, Adam Karpierz
6
6
  Author-email: adam@karpierz.net
@@ -26,27 +26,28 @@ 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
32
33
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
- Requires-Python: <4.0.0,>=3.8.1
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>=68.2.2
37
- Requires-Dist: pkg-about>=1.1.5
37
+ Requires-Dist: setuptools>=72.2.0
38
+ Requires-Dist: pkg-about>=1.1.8
38
39
  Provides-Extra: doc
39
40
  Requires-Dist: Sphinx>=7.1.2; extra == "doc"
40
- Requires-Dist: sphinx-toolbox>=3.5.0; extra == "doc"
41
- Requires-Dist: sphinx-tabs>=3.4.1; extra == "doc"
42
- Requires-Dist: sphinx-copybutton>=0.5.1; extra == "doc"
43
- Requires-Dist: sphinxcontrib-spelling>=7.7.0; extra == "doc"
44
- Requires-Dist: sphinx-lint>=0.6.7; extra == "doc"
41
+ Requires-Dist: sphinx-toolbox>=3.7.0; extra == "doc"
42
+ Requires-Dist: sphinx-tabs>=3.4.5; extra == "doc"
43
+ Requires-Dist: sphinx-copybutton>=0.5.2; extra == "doc"
44
+ Requires-Dist: sphinxcontrib-spelling>=8.0.0; extra == "doc"
45
+ Requires-Dist: sphinx-lint>=0.9.1; extra == "doc"
45
46
  Requires-Dist: restructuredtext-lint>=1.4.0; extra == "doc"
46
- Requires-Dist: nbsphinx>=0.8.10; extra == "doc"
47
+ Requires-Dist: nbsphinx>=0.9.4; extra == "doc"
47
48
  Provides-Extra: test
48
- Requires-Dist: deepdiff>=6.7.1; extra == "test"
49
- Requires-Dist: rich>=13.7.0; extra == "test"
49
+ Requires-Dist: deepdiff>=7.0.1; extra == "test"
50
+ Requires-Dist: rich>=13.7.1; extra == "test"
50
51
 
51
52
  let3
52
53
  ====
@@ -123,7 +124,7 @@ Installation
123
124
 
124
125
  Prerequisites:
125
126
 
126
- + Python 3.7 or higher
127
+ + Python 3.8 or higher
127
128
 
128
129
  * https://www.python.org/
129
130
 
@@ -195,7 +196,12 @@ Authors
195
196
  Changelog
196
197
  =========
197
198
 
198
- 1.0.23 (2024-01-26)
199
+ 1.0.25 (2024-08-13)
200
+ -------------------
201
+ - Add support for Python 3.13
202
+ - Setup (dependencies) update.
203
+
204
+ 1.0.24 (2024-01-30)
199
205
  -------------------
200
206
  - Setup update (now based on tox >= 4.0).
201
207
  - Add support for Python 3.12
@@ -0,0 +1,16 @@
1
+ setuptools>=72.2.0
2
+ pkg-about>=1.1.8
3
+
4
+ [doc]
5
+ Sphinx>=7.1.2
6
+ sphinx-toolbox>=3.7.0
7
+ sphinx-tabs>=3.4.5
8
+ sphinx-copybutton>=0.5.2
9
+ sphinxcontrib-spelling>=8.0.0
10
+ sphinx-lint>=0.9.1
11
+ restructuredtext-lint>=1.4.0
12
+ nbsphinx>=0.9.4
13
+
14
+ [test]
15
+ deepdiff>=7.0.1
16
+ rich>=13.7.1
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the MIT License
3
- # https://opensource.org/license/mit
2
+ # SPDX-License-Identifier: MIT
4
3
 
5
4
  __all__ = ('top_dir', 'test_dir')
6
5
 
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the MIT License
3
- # https://opensource.org/license/mit
2
+ # SPDX-License-Identifier: MIT
4
3
 
5
4
  import unittest
6
5
  import sys
@@ -1,6 +1,5 @@
1
1
  # Copyright (c) 2016 Adam Karpierz
2
- # Licensed under the MIT License
3
- # https://opensource.org/license/mit
2
+ # SPDX-License-Identifier: MIT
4
3
 
5
4
  import unittest
6
5
 
@@ -1,16 +0,0 @@
1
- setuptools>=68.2.2
2
- pkg-about>=1.1.5
3
-
4
- [doc]
5
- Sphinx>=7.1.2
6
- sphinx-toolbox>=3.5.0
7
- sphinx-tabs>=3.4.1
8
- sphinx-copybutton>=0.5.1
9
- sphinxcontrib-spelling>=7.7.0
10
- sphinx-lint>=0.6.7
11
- restructuredtext-lint>=1.4.0
12
- nbsphinx>=0.8.10
13
-
14
- [test]
15
- deepdiff>=6.7.1
16
- rich>=13.7.0
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