Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ If applicable, add screenshots (errors, example of the behavior, etc.) to help e

### External tools

- Python: [e.g. 3.6]
- Python: [e.g. 3.7]
- Django: [e.g. 2.2.0]
- OS: [Linux, MacOS, Windows]
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ 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"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
8 changes: 3 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ repos:
hooks:
- id: check-merge-conflict
- id: end-of-file-fixer
exclude: >-
^docs/[^/]*\.svg$
exclude: ^docs/[^/]*\.svg$
- id: requirements-txt-fixer
- id: trailing-whitespace
types: [python]
Expand Down Expand Up @@ -46,7 +45,7 @@ repos:
rev: "v2.34.0"
hooks:
- id: pyupgrade
args: ["--py36-plus", "--keep-mock"]
args: ["--py37-plus", "--keep-mock"]
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: "v1.6.0"
hooks:
Expand All @@ -60,8 +59,7 @@ repos:
rev: "v1.0.1"
hooks:
- id: rst-linter
files: >-
^[^/]+[.]rst$
files: ^[^/]+[.]rst$
- repo: https://github.com/adrienverge/yamllint
rev: "v1.26.3"
hooks:
Expand Down
1 change: 0 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"recommendations": [
"eamodio.gitlens",
"github.vscode-pull-request-github",
"knisterpeter.vscode-github",
"esbenp.prettier-vscode",
"ms-python.vscode-pylance",
"ms-python.python",
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "off",
"python.formatting.provider": "black",
"python.sortImports.args": [
"isort.args": [
"--src=${workspaceFolder}"
],
"terminal.integrated.scrollback": 10000,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.black]
target-version = ['py36']
target-version = ['py37']
extend-exclude = 'migrations'

[tool.isort]
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_test_requirements():
author="Archmonger",
author_email="[email protected]",
long_description=(root_dir / "README.rst").read_text(encoding="utf-8"),
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=get_requirements(),
tests_require=get_test_requirements(),
include_package_data=True,
Expand Down Expand Up @@ -57,7 +57,6 @@ def get_test_requirements():
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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,5 +1,5 @@
[tox]
envlist = py{36,37,38,39}-django22,py{36,37,38,39,310}-django{32,40,master},lint,docs,functional
envlist = py{37,38,39}-django22,py{37,38,39,310}-django{32,40,master},lint,docs,functional

[testenv]
passenv = *
Expand All @@ -16,7 +16,6 @@ commands = {posargs:coverage run runtests.py}
# Configure which test environments are run for each Github Actions Python version.
[gh-actions]
python =
3.6: py36-django{22,32},functional
3.7: py37-django{22,32},functional
3.8: py38-django{22,32,40},functional
3.9: py39-django{22,32,40},functional
Expand Down