wexample-migration 9.3.0__tar.gz → 9.3.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.
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/PKG-INFO +6 -6
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/README.md +3 -3
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/pyproject.toml +3 -3
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/__init__.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/abstract_migration.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/filestate/__init__.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/filestate/filestate_item_migration.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/migration_context.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/migration_runner.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/migration_stamp.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/py.typed +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/workdir/__init__.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/workdir/mixin/__init__.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/workdir/mixin/with_migration_workdir_mixin.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/tests/test_filestate_item_migration.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/tests/test_migration_rollback.py +0 -0
- {wexample_migration-9.3.0 → wexample_migration-9.3.2}/tests/test_migration_runner.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wexample-migration
|
|
3
|
-
Version: 9.3.
|
|
3
|
+
Version: 9.3.2
|
|
4
4
|
Author-Email: weeger <contact@wexample.com>
|
|
5
5
|
License: MIT
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -10,8 +10,8 @@ Requires-Python: >=3.10
|
|
|
10
10
|
Requires-Dist: attrs>=23.1.0
|
|
11
11
|
Requires-Dist: cattrs>=23.1.0
|
|
12
12
|
Requires-Dist: pyyaml>=6.0
|
|
13
|
-
Requires-Dist: wexample-filestate>=11.
|
|
14
|
-
Requires-Dist: wexample-helpers>=13.
|
|
13
|
+
Requires-Dist: wexample-filestate>=11.2.0
|
|
14
|
+
Requires-Dist: wexample-helpers>=13.1.0
|
|
15
15
|
Provides-Extra: dev
|
|
16
16
|
Requires-Dist: pytest; extra == "dev"
|
|
17
17
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
@@ -21,7 +21,7 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
|
|
22
22
|
# migration
|
|
23
23
|
|
|
24
|
-
Version: 9.3.
|
|
24
|
+
Version: 9.3.2
|
|
25
25
|
|
|
26
26
|
## Table of Contents
|
|
27
27
|
|
|
@@ -102,8 +102,8 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
102
102
|
- attrs: >=23.1.0
|
|
103
103
|
- cattrs: >=23.1.0
|
|
104
104
|
- pyyaml: >=6.0
|
|
105
|
-
- wexample-filestate: >=11.
|
|
106
|
-
- wexample-helpers: >=13.
|
|
105
|
+
- wexample-filestate: >=11.2.0
|
|
106
|
+
- wexample-helpers: >=13.1.0
|
|
107
107
|
|
|
108
108
|
## Versioning & Compatibility Policy
|
|
109
109
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# migration
|
|
2
2
|
|
|
3
|
-
Version: 9.3.
|
|
3
|
+
Version: 9.3.2
|
|
4
4
|
|
|
5
5
|
## Table of Contents
|
|
6
6
|
|
|
@@ -81,8 +81,8 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
81
81
|
- attrs: >=23.1.0
|
|
82
82
|
- cattrs: >=23.1.0
|
|
83
83
|
- pyyaml: >=6.0
|
|
84
|
-
- wexample-filestate: >=11.
|
|
85
|
-
- wexample-helpers: >=13.
|
|
84
|
+
- wexample-filestate: >=11.2.0
|
|
85
|
+
- wexample-helpers: >=13.1.0
|
|
86
86
|
|
|
87
87
|
## Versioning & Compatibility Policy
|
|
88
88
|
|
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "wexample-migration"
|
|
9
|
-
version = "9.3.
|
|
9
|
+
version = "9.3.2"
|
|
10
10
|
authors = [
|
|
11
11
|
{ name = "weeger", email = "contact@wexample.com" },
|
|
12
12
|
]
|
|
@@ -20,8 +20,8 @@ dependencies = [
|
|
|
20
20
|
"attrs>=23.1.0",
|
|
21
21
|
"cattrs>=23.1.0",
|
|
22
22
|
"pyyaml>=6.0",
|
|
23
|
-
"wexample-filestate>=11.
|
|
24
|
-
"wexample-helpers>=13.
|
|
23
|
+
"wexample-filestate>=11.2.0",
|
|
24
|
+
"wexample-helpers>=13.1.0",
|
|
25
25
|
]
|
|
26
26
|
|
|
27
27
|
[project.readme]
|
|
File without changes
|
{wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/abstract_migration.py
RENAMED
|
File without changes
|
{wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/filestate/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/migration_context.py
RENAMED
|
File without changes
|
{wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/migration_runner.py
RENAMED
|
File without changes
|
{wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/migration_stamp.py
RENAMED
|
File without changes
|
|
File without changes
|
{wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/workdir/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{wexample_migration-9.3.0 → wexample_migration-9.3.2}/tests/test_filestate_item_migration.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|