File tree 6 files changed +9
-8
lines changed
6 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 18
18
uses : actions/checkout@v4
19
19
with :
20
20
repository : ' timgraham/django'
21
- ref : ' snowflake-5.1 .x'
21
+ ref : ' snowflake-5.2 .x'
22
22
path : ' django_repo'
23
23
- name : Install system packages for Django's Python test dependencies
24
24
run : |
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 5.1 - 2024-08-14
3
+ ## 5.2 - Unreleased
4
4
5
- Initial release for Django 5.1 .x.
5
+ Initial release for Django 5.2 .x.
Original file line number Diff line number Diff line change 3
3
## Install and usage
4
4
5
5
Use the version of django-snowflake that corresponds to your version of
6
- Django. For example, to get the latest compatible release for Django 5.1 .x:
6
+ Django. For example, to get the latest compatible release for Django 5.2 .x:
7
7
8
- ` pip install django-snowflake==5.1 .* `
8
+ ` pip install django-snowflake==5.2 .* `
9
9
10
10
The minor release number of Django doesn't correspond to the minor release
11
11
number of django-snowflake. Use the latest minor release of each.
Original file line number Diff line number Diff line change 1
- __version__ = '5.1 '
1
+ __version__ = '5.2a0 '
2
2
3
3
# Check Django compatibility before other imports which may fail if the
4
4
# wrong version of Django is installed.
Original file line number Diff line number Diff line change @@ -236,6 +236,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
236
236
'expressions.tests.FTimeDeltaTests.test_date_subquery_subtraction' ,
237
237
'expressions.tests.FTimeDeltaTests.test_datetime_subquery_subtraction' ,
238
238
'expressions_window.tests.WindowFunctionTests.test_subquery_row_range_rank' ,
239
+ 'foreign_object.test_tuple_lookups.TupleLookupsTests.test_in_subquery' ,
239
240
'lookup.tests.LookupQueryingTests.test_filter_subquery_lhs' ,
240
241
'lookup.tests.LookupTests.test_nested_outerref_lhs' ,
241
242
'model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_on_subquery' ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ long_description_content_type = text/markdown
11
11
classifiers =
12
12
Development Status :: 5 - Production/Stable
13
13
Framework :: Django
14
- Framework :: Django :: 5.1
14
+ Framework :: Django :: 5.2
15
15
License :: OSI Approved :: MIT License
16
16
Operating System :: OS Independent
17
17
Programming Language :: Python
@@ -27,7 +27,7 @@ project_urls =
27
27
python_requires = >=3.10
28
28
packages = find:
29
29
install_requires =
30
- django >= 5.1, < 5.2
30
+ # django >= 5.1, < 5.2
31
31
snowflake-connector-python >= 3.6.0
32
32
33
33
[flake8]
You can’t perform that action at this time.
0 commit comments