django-migrate-sql-deux 1.1.2__tar.gz → 1.2.0__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.
Files changed (22) hide show
  1. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/PKG-INFO +3 -3
  2. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/pyproject.toml +6 -3
  3. django_migrate_sql_deux-1.2.0/src/django_migrate_sql/__init__.py +1 -0
  4. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql/autodetector.py +1 -1
  5. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql_deux.egg-info/PKG-INFO +3 -3
  6. django_migrate_sql_deux-1.1.2/src/django_migrate_sql/__init__.py +0 -1
  7. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/LICENSE +0 -0
  8. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/README.md +0 -0
  9. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/setup.cfg +0 -0
  10. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql/config.py +0 -0
  11. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql/graph.py +0 -0
  12. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql/management/__init__.py +0 -0
  13. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql/management/commands/__init__.py +0 -0
  14. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql/management/commands/makemigrations.py +0 -0
  15. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql/management/commands/migrate.py +0 -0
  16. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql/operations.py +0 -0
  17. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql_deux.egg-info/SOURCES.txt +0 -0
  18. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql_deux.egg-info/dependency_links.txt +0 -0
  19. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql_deux.egg-info/requires.txt +0 -0
  20. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/src/django_migrate_sql_deux.egg-info/top_level.txt +0 -0
  21. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/tests/test_migrate_command.py +0 -0
  22. {django_migrate_sql_deux-1.1.2 → django_migrate_sql_deux-1.2.0}/tests/test_system_checks.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-migrate-sql-deux
3
- Version: 1.1.2
3
+ Version: 1.2.0
4
4
  Summary: Django Migrations for raw SQL
5
5
  Author-email: Bogdan Klichuk <klichukb@gmail.com>, Bruno Alla <oss@browniebroke.com>
6
6
  License-Expression: ISC
@@ -16,13 +16,13 @@ Classifier: Framework :: Django :: 4.2
16
16
  Classifier: Framework :: Django :: 5.0
17
17
  Classifier: Framework :: Django :: 5.1
18
18
  Classifier: Framework :: Django :: 5.2
19
- Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Programming Language :: Python :: 3.11
22
21
  Classifier: Programming Language :: Python :: 3.12
23
22
  Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: 3.14
24
24
  Classifier: Topic :: Software Development :: Libraries
25
- Requires-Python: >=3.9
25
+ Requires-Python: >=3.10
26
26
  Description-Content-Type: text/markdown
27
27
  License-File: LICENSE
28
28
  Requires-Dist: django>=4.2
@@ -4,7 +4,7 @@ requires = [ "setuptools>=77.0.3" ]
4
4
 
5
5
  [project]
6
6
  name = "django-migrate-sql-deux"
7
- version = "1.1.2"
7
+ version = "1.2.0"
8
8
  description = "Django Migrations for raw SQL"
9
9
  readme = "README.md"
10
10
  license = "ISC"
@@ -12,7 +12,7 @@ authors = [
12
12
  { name = "Bogdan Klichuk", email = "klichukb@gmail.com" },
13
13
  { name = "Bruno Alla", email = "oss@browniebroke.com" },
14
14
  ]
15
- requires-python = ">=3.9"
15
+ requires-python = ">=3.10"
16
16
  classifiers = [
17
17
  "Development Status :: 5 - Production/Stable",
18
18
  "Intended Audience :: Developers",
@@ -23,11 +23,11 @@ classifiers = [
23
23
  "Framework :: Django :: 5.0",
24
24
  "Framework :: Django :: 5.1",
25
25
  "Framework :: Django :: 5.2",
26
- "Programming Language :: Python :: 3.9",
27
26
  "Programming Language :: Python :: 3.10",
28
27
  "Programming Language :: Python :: 3.11",
29
28
  "Programming Language :: Python :: 3.12",
30
29
  "Programming Language :: Python :: 3.13",
30
+ "Programming Language :: Python :: 3.14",
31
31
  "Topic :: Software Development :: Libraries",
32
32
  ]
33
33
 
@@ -89,6 +89,9 @@ lint.per-file-ignores."tests/**/migrations*/*" = [
89
89
  ]
90
90
  lint.isort.known-first-party = [ "django_migrate_sql", "tests" ]
91
91
 
92
+ [tool.pyproject-fmt]
93
+ max_supported_python = "3.14"
94
+
92
95
  [tool.pytest.ini_options]
93
96
  addopts = """\
94
97
  -v
@@ -0,0 +1 @@
1
+ __version__ = "1.2.0"
@@ -61,7 +61,7 @@ def is_sql_equal(sqls1, sqls2):
61
61
  if len(sqls1) != len(sqls2):
62
62
  return False
63
63
 
64
- for sql1, sql2 in zip(sqls1, sqls2):
64
+ for sql1, sql2 in zip(sqls1, sqls2, strict=False):
65
65
  sql1, params1 = _sql_params(sql1)
66
66
  sql2, params2 = _sql_params(sql2)
67
67
  if sql1 != sql2 or params1 != params2:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-migrate-sql-deux
3
- Version: 1.1.2
3
+ Version: 1.2.0
4
4
  Summary: Django Migrations for raw SQL
5
5
  Author-email: Bogdan Klichuk <klichukb@gmail.com>, Bruno Alla <oss@browniebroke.com>
6
6
  License-Expression: ISC
@@ -16,13 +16,13 @@ Classifier: Framework :: Django :: 4.2
16
16
  Classifier: Framework :: Django :: 5.0
17
17
  Classifier: Framework :: Django :: 5.1
18
18
  Classifier: Framework :: Django :: 5.2
19
- Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Programming Language :: Python :: 3.11
22
21
  Classifier: Programming Language :: Python :: 3.12
23
22
  Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: 3.14
24
24
  Classifier: Topic :: Software Development :: Libraries
25
- Requires-Python: >=3.9
25
+ Requires-Python: >=3.10
26
26
  Description-Content-Type: text/markdown
27
27
  License-File: LICENSE
28
28
  Requires-Dist: django>=4.2
@@ -1 +0,0 @@
1
- __version__ = "1.1.2"