Skip to content

Commit 1db78cc

Browse files
committed
Update to Django 6.1
1 parent 66ec507 commit 1db78cc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
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-6.0.x'
21+
ref: 'snowflake-6.1.x'
2222
path: 'django_repo'
2323
- name: Install system packages for Django's Python test dependencies
2424
run: |

README.md

Lines changed: 2 additions & 2 deletions
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 6.0.x:
6+
Django. For example, to get the latest compatible release for Django 6.1.x:
77

8-
`pip install django-snowflake==6.0.*`
8+
`pip install django-snowflake==6.1.*`
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '6.0'
1+
__version__ = '6.1a0'
22

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

setup.cfg

Lines changed: 2 additions & 2 deletions
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 :: 6.0
14+
Framework :: Django :: 6.1
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.12
2828
packages = find:
2929
install_requires =
30-
django >= 6.0, < 6.1
30+
# django >= 6.1, < 6.2
3131
snowflake-connector-python >= 3.6.0
3232

3333
[flake8]

0 commit comments

Comments
 (0)