dsw-tdk 3.26.0__tar.gz → 3.26.2__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.
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/CHANGELOG.md +10 -0
- {dsw-tdk-3.26.0/dsw_tdk.egg-info → dsw-tdk-3.26.2}/PKG-INFO +13 -2
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/build_info.py +4 -4
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/consts.py +1 -1
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2/dsw_tdk.egg-info}/PKG-INFO +13 -2
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/pyproject.toml +1 -1
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/LICENSE +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/MANIFEST.in +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/README.md +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/__init__.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/__main__.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/api_client.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/cli.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/core.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/model.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/templates/README.md.j2 +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/templates/starter.j2 +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/utils.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw/tdk/validation.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw_tdk.egg-info/SOURCES.txt +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw_tdk.egg-info/dependency_links.txt +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw_tdk.egg-info/entry_points.txt +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw_tdk.egg-info/not-zip-safe +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw_tdk.egg-info/requires.txt +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/dsw_tdk.egg-info/top_level.txt +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/setup.cfg +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/setup.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/tests/test_basic.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/tests/test_cmd_get.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/tests/test_cmd_list.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/tests/test_cmd_new.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/tests/test_cmd_package.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/tests/test_cmd_put.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/tests/test_cmd_unpackage.py +0 -0
- {dsw-tdk-3.26.0 → dsw-tdk-3.26.2}/tests/test_cmd_verify.py +0 -0
|
@@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
## [3.26.2]
|
|
12
|
+
|
|
13
|
+
Released for version consistency with other DSW tools.
|
|
14
|
+
|
|
15
|
+
## [3.26.1]
|
|
16
|
+
|
|
17
|
+
Released for version consistency with other DSW tools.
|
|
18
|
+
|
|
11
19
|
## [3.26.0]
|
|
12
20
|
|
|
13
21
|
Released for version consistency with other DSW tools.
|
|
@@ -335,3 +343,5 @@ Initial DSW Template Development Kit (versioned as part of the [DSW platform](ht
|
|
|
335
343
|
[3.24.0]: /../../tree/v3.24.0
|
|
336
344
|
[3.25.0]: /../../tree/v3.25.0
|
|
337
345
|
[3.26.0]: /../../tree/v3.26.0
|
|
346
|
+
[3.26.1]: /../../tree/v3.26.1
|
|
347
|
+
[3.26.2]: /../../tree/v3.26.2
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dsw-tdk
|
|
3
|
-
Version: 3.26.
|
|
3
|
+
Version: 3.26.2
|
|
4
4
|
Summary: Data Stewardship Wizard Template Development Toolkit
|
|
5
5
|
Author-email: Marek Suchánek <marek.suchanek@ds-wizard.org>
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -19,8 +19,19 @@ Classifier: Topic :: Internet :: WWW/HTTP
|
|
|
19
19
|
Classifier: Topic :: Utilities
|
|
20
20
|
Requires-Python: <4,>=3.9
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
|
-
Provides-Extra: test
|
|
23
22
|
License-File: LICENSE
|
|
23
|
+
Requires-Dist: aiohttp
|
|
24
|
+
Requires-Dist: click
|
|
25
|
+
Requires-Dist: colorama
|
|
26
|
+
Requires-Dist: humanize
|
|
27
|
+
Requires-Dist: Jinja2
|
|
28
|
+
Requires-Dist: multidict
|
|
29
|
+
Requires-Dist: pathspec
|
|
30
|
+
Requires-Dist: python-dotenv
|
|
31
|
+
Requires-Dist: python-slugify
|
|
32
|
+
Requires-Dist: watchgod
|
|
33
|
+
Provides-Extra: test
|
|
34
|
+
Requires-Dist: pytest; extra == "test"
|
|
24
35
|
|
|
25
36
|
# dsw-tdk
|
|
26
37
|
|
|
@@ -9,9 +9,9 @@ BuildInfo = namedtuple(
|
|
|
9
9
|
)
|
|
10
10
|
|
|
11
11
|
BUILD_INFO = BuildInfo(
|
|
12
|
-
version='v3.26.
|
|
13
|
-
built_at='2023-
|
|
14
|
-
sha='
|
|
12
|
+
version='v3.26.2~9194676',
|
|
13
|
+
built_at='2023-09-20 13:02:07Z',
|
|
14
|
+
sha='919467612be55f5f7a352f1282cd31f94bb9ef84',
|
|
15
15
|
branch='HEAD',
|
|
16
|
-
tag='v3.26.
|
|
16
|
+
tag='v3.26.2',
|
|
17
17
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dsw-tdk
|
|
3
|
-
Version: 3.26.
|
|
3
|
+
Version: 3.26.2
|
|
4
4
|
Summary: Data Stewardship Wizard Template Development Toolkit
|
|
5
5
|
Author-email: Marek Suchánek <marek.suchanek@ds-wizard.org>
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -19,8 +19,19 @@ Classifier: Topic :: Internet :: WWW/HTTP
|
|
|
19
19
|
Classifier: Topic :: Utilities
|
|
20
20
|
Requires-Python: <4,>=3.9
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
|
-
Provides-Extra: test
|
|
23
22
|
License-File: LICENSE
|
|
23
|
+
Requires-Dist: aiohttp
|
|
24
|
+
Requires-Dist: click
|
|
25
|
+
Requires-Dist: colorama
|
|
26
|
+
Requires-Dist: humanize
|
|
27
|
+
Requires-Dist: Jinja2
|
|
28
|
+
Requires-Dist: multidict
|
|
29
|
+
Requires-Dist: pathspec
|
|
30
|
+
Requires-Dist: python-dotenv
|
|
31
|
+
Requires-Dist: python-slugify
|
|
32
|
+
Requires-Dist: watchgod
|
|
33
|
+
Provides-Extra: test
|
|
34
|
+
Requires-Dist: pytest; extra == "test"
|
|
24
35
|
|
|
25
36
|
# dsw-tdk
|
|
26
37
|
|
|
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = 'dsw-tdk'
|
|
7
|
-
version = "3.26.
|
|
7
|
+
version = "3.26.2"
|
|
8
8
|
description = 'Data Stewardship Wizard Template Development Toolkit'
|
|
9
9
|
readme = 'README.md'
|
|
10
10
|
keywords = ['documents', 'dsw', 'jinja2', 'template', 'toolkit']
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|