Skip to content

Commit

Permalink
Drop Python 3.6 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani committed Feb 21, 2022
1 parent 051cca5 commit 1d89641
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10']
django-version: ['3.2', '4.0', 'main']
exclude:
- python-version: '3.6'
django-version: '4.0'
- python-version: '3.7'
django-version: '4.0'
include:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased
### Changed
- Update install_requires to use ``jdatetime>=4.0.0``
- Drop Python 3.6 support

## [5.1.0] - 2022-01-30
- Add support for `__date` lookup filter
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"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
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
[tox]
envlist =
py{36,37,38,39,310}-dj32
py{37,38,39,310}-dj32
py{38,39,310}-dj{40,main}
py38-flake8
py38-isort

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38, flake8, isort
3.9: py39
Expand Down

0 comments on commit 1d89641

Please sign in to comment.