Skip to content

Commit

Permalink
Drop support for django 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ckrybus committed Nov 30, 2023
1 parent 982916c commit 8a79154
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 14 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,11 @@ jobs:
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
django: [3.2.*, 4.2.*]
django: [4.2.*]
crispy-forms: [2.0.*]
exclude:
- python-version: "3.11"
django: 3.2.*
- python-version: "3.12"
django: 3.2.*
django: 4.2.*
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ History
Unreleased
----------

* Drop support for Django 4.0 and 4.1
* Drop support for Django 3.2, 4.0 and 4.1


0.10.0 (2023-07-03)
Expand Down
6 changes: 1 addition & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,11 @@ Requirements

Officially supported versions:

* Django: 3.2, 4.2
* Django: 4.2
* Python 3.8, 3.9, 3.10, 3.11, 3.12
* django-crispy-forms 2.0
* Bulma.css 0.9.4

**Django 4.0+ requires crispy-bulma version 0.6.0+ and django-crispy-forms version 1.13+.**

**For django-crispy-forms versions older than 2.0 use crispy-bulma<=0.8.3**


Quickstart
----------
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
url="https://github.com/ckrybus/crispy-bulma",
license="MIT",
packages=["crispy_bulma"],
install_requires=["Django>=3.2", "django-crispy-forms>=2.0"],
install_requires=["Django>=4.2", "django-crispy-forms>=2.0"],
extras_require={"test": ["pytest", "pytest-django"]},
tests_require=["crispy-bulma[test]"],
python_requires=">=3.8",
Expand All @@ -35,7 +35,6 @@
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
envlist =
py{38,39,310}-django{32}-crispy{20},
py{38,39,310}-django{42}-crispy{20},
py{311,312}-django{42,-latest}-crispy{20,-latest},

[testenv]
deps =
django32: django>=3.2,<3.3
django42: django>=4.2a,<5.0
django-latest: https://github.com/django/django/archive/main.tar.gz
crispy20: django-crispy-forms>=2.0,<2.1
Expand Down

0 comments on commit 8a79154

Please sign in to comment.