Skip to content

Commit

Permalink
Dropped QA for Py 3.6. Added QA for Django 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
idlesign committed Jan 21, 2023
1 parent c489194 commit fca775e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
django-version: [2.2, 3.0, 3.1, 3.2, 4.0]
python-version: [3.7, 3.8, 3.9, "3.10"]
django-version: [2.2, 3.0, 3.1, 3.2, 4.0, 4.1]

exclude:

- python-version: 3.7
django-version: 4.0

- python-version: 3.6
django-version: 4.0
- python-version: 3.7
django-version: 4.1

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ django-siteajax changelog
=========================


Unreleased
----------
! Dropped QA for Py 3.6. Added QA for Django 4.1.


v0.5.0 [2021-05-28]
-------------------
+ Added wildcards IDs support for 'ajax_dispatch' decorator.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ in your HTML and helpful abstractions from `siteajax` in your Python code.
Requirements
------------

1. Python 3.6+
1. Python 3.7+
2. Django 2.2+


Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ def get_version():
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[tox]
envlist =
py{36}-django{22,30,31,32}
py{37,38,39,310}-django{22,30,31,32,40}
py{37,38,39,310}-django{22,30,31,32,40,41}

install_command = pip install {opts} {packages}
skip_missing_interpreters = True
Expand All @@ -17,3 +16,4 @@ deps =
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
django40: Django>=4.1,<4.2

0 comments on commit fca775e

Please sign in to comment.