File tree Expand file tree Collapse file tree 6 files changed +8
-9
lines changed Expand file tree Collapse file tree 6 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 17
17
- name : Set up Python
18
18
uses : actions/setup-python@v4
19
19
with :
20
- python-version : ' 3.10 '
20
+ python-version : ' 3.12 '
21
21
- run : python -m pip install flake8
22
22
- name : flake8
23
23
uses : liskin/gh-problem-matcher-wrap@v2
33
33
- name : Set up Python
34
34
uses : actions/setup-python@v4
35
35
with :
36
- python-version : ' 3.10 '
36
+ python-version : ' 3.12 '
37
37
- run : python -m pip install isort
38
38
- name : isort
39
39
uses : liskin/gh-problem-matcher-wrap@v2
Original file line number Diff line number Diff line change 54
54
- uses : actions/checkout@v4
55
55
- uses : actions/setup-python@v4
56
56
with :
57
- python-version : ' 3.10 '
57
+ python-version : ' 3.12 '
58
58
- name : Install system packages for Django's Python test dependencies
59
59
run : |
60
60
sudo apt-get update
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ VERSION=$1
7
7
8
8
# clone django into the repo.
9
9
rm -rf _django_repo
10
- git clone --depth 1 --single-branch --branch cockroach-5.2 .x https://github.com/timgraham/django _django_repo
10
+ git clone --depth 1 --single-branch --branch cockroach-6.0 .x https://github.com/timgraham/django _django_repo
11
11
12
12
# install the django requirements.
13
13
cd _django_repo/tests/
Original file line number Diff line number Diff line change 1
- __version__ = '5.2 '
1
+ __version__ = '6.0a0 '
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 @@ -161,7 +161,6 @@ def django_test_expected_failures(self):
161
161
'bulk_create.tests.BulkCreateTests.test_bulk_insert_nullable_fields' ,
162
162
'many_to_one.tests.ManyToOneTests.test_add_remove_set_by_pk_raises' ,
163
163
'many_to_one.tests.ManyToOneTests.test_fk_to_smallautofield' ,
164
- 'many_to_one.tests.ManyToOneTests.test_get_prefetch_queryset_reverse_warning' ,
165
164
'many_to_one.tests.ManyToOneTests.test_get_prefetch_querysets_reverse_invalid_querysets_length' ,
166
165
'migrations.test_operations.OperationTests.test_smallfield_autofield_foreignfield_growth' ,
167
166
'migrations.test_operations.OperationTests.test_smallfield_bigautofield_foreignfield_growth' ,
@@ -187,6 +186,8 @@ def django_test_expected_failures(self):
187
186
'aggregation.tests.AggregateTestCase.test_aggregation_default_expression' ,
188
187
# ProgrammingError: VALUES types int and float cannot be matched
189
188
'field_defaults.tests.DefaultTests.test_bulk_create_mixed_db_defaults_function' ,
189
+ # CockroachDB returns incorrect order?
190
+ "aggregation.tests.AggregateTestCase.test_distinct_on_stringagg" ,
190
191
})
191
192
if not self .is_cockroachdb_24_3 :
192
193
expected_failures .update ({
Original file line number Diff line number Diff line change @@ -16,8 +16,6 @@ classifiers =
16
16
Operating System :: OS Independent
17
17
Programming Language :: Python
18
18
Programming Language :: Python :: 3
19
- Programming Language :: Python :: 3.10
20
- Programming Language :: Python :: 3.11
21
19
Programming Language :: Python :: 3.12
22
20
Programming Language :: Python :: 3.13
23
21
project_urls =
@@ -28,7 +26,7 @@ project_urls =
28
26
python_requires = >=3.10
29
27
packages = find:
30
28
install_requires =
31
- django >= 5.2 , < 6.0
29
+ # django >= 6.0 , < 6.1
32
30
33
31
[flake8]
34
32
max-line-length = 119
You can’t perform that action at this time.
0 commit comments