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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand All @@ -27,6 +29,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand All @@ -47,7 +51,6 @@ jobs:
strategy:
matrix:
python:
- '3.5'
- '3.6'
- '3.7'
- '3.8'
Expand All @@ -61,6 +64,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,10 @@ coverage-clean:

# Black
black-lint:
black --line-length 99 --target-version py35 --exclude '/migrations/' --check findreplace tests setup.py
black --line-length 99 --target-version py36 --exclude '/migrations/' --check findreplace tests setup.py

black-format:
black --line-length 99 --target-version py35 --exclude '/migrations/' findreplace tests setup.py
black --line-length 99 --target-version py36 --exclude '/migrations/' findreplace tests setup.py


#pipdeptree
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@ def read(filename):
platforms=["any"],
packages=find_packages(exclude=["tests"]),
include_package_data=True,
python_requires=">=3.5",
python_requires=">=3.6",
install_requires=["Django>=1.11"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
envlist =
check
lint
{py35,py36,py37}-django1.11
{py35,py36,py37,py38}-django2.2
{py36,py37}-django1.11
{py36,py37,py38}-django2.2
coverage
skipsdist = true

Expand Down
Loading