Skip to content

Commit ed2cd50

Browse files
committed
Update to Django 5.2
1 parent 1b867ef commit ed2cd50

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v4
1919
with:
2020
repository: 'timgraham/django'
21-
ref: 'snowflake-5.1.x'
21+
ref: 'snowflake-5.2.x'
2222
path: 'django_repo'
2323
- name: Install system packages for Django's Python test dependencies
2424
run: |

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changelog
22

3-
## 5.1 - 2024-08-14
3+
## 5.2 - Unreleased
44

5-
Initial release for Django 5.1.x.
5+
Initial release for Django 5.2.x.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
## Install and usage
44

55
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:
77

8-
`pip install django-snowflake==5.1.*`
8+
`pip install django-snowflake==5.2.*`
99

1010
The minor release number of Django doesn't correspond to the minor release
1111
number of django-snowflake. Use the latest minor release of each.

django_snowflake/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '5.1'
1+
__version__ = '5.2a0'
22

33
# Check Django compatibility before other imports which may fail if the
44
# wrong version of Django is installed.

django_snowflake/features.py

+1
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
236236
'expressions.tests.FTimeDeltaTests.test_date_subquery_subtraction',
237237
'expressions.tests.FTimeDeltaTests.test_datetime_subquery_subtraction',
238238
'expressions_window.tests.WindowFunctionTests.test_subquery_row_range_rank',
239+
'foreign_object.test_tuple_lookups.TupleLookupsTests.test_in_subquery',
239240
'lookup.tests.LookupQueryingTests.test_filter_subquery_lhs',
240241
'lookup.tests.LookupTests.test_nested_outerref_lhs',
241242
'model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_on_subquery',

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ long_description_content_type = text/markdown
1111
classifiers =
1212
Development Status :: 5 - Production/Stable
1313
Framework :: Django
14-
Framework :: Django :: 5.1
14+
Framework :: Django :: 5.2
1515
License :: OSI Approved :: MIT License
1616
Operating System :: OS Independent
1717
Programming Language :: Python
@@ -27,7 +27,7 @@ project_urls =
2727
python_requires = >=3.10
2828
packages = find:
2929
install_requires =
30-
django >= 5.1, < 5.2
30+
# django >= 5.1, < 5.2
3131
snowflake-connector-python >= 3.6.0
3232

3333
[flake8]

0 commit comments

Comments
 (0)