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
46 changes: 0 additions & 46 deletions .github/workflows/lint.yml

This file was deleted.

2 changes: 0 additions & 2 deletions demo/apps.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.apps import AppConfig


Expand Down
1 change: 0 additions & 1 deletion demo/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.17 on 2018-12-08 23:41
from __future__ import unicode_literals

import django.db.models.deletion
from django.conf import settings
Expand Down
2 changes: 0 additions & 2 deletions extra_validator/field_validation/validator.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import print_function

import django
from django.core import validators
from django.core.exceptions import NON_FIELD_ERRORS, ValidationError
Expand Down
12 changes: 8 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
#
# This file is autogenerated by pip-compile
# To update, run:
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# pip-compile
#
future==0.18.3 # via django-extra-field-validation (setup.py)
six==1.16.0 # via django-extra-field-validation (setup.py)
asgiref==3.6.0
# via django
django==4.1.5
# via django-extra-field-validation (setup.py)
sqlparse==0.4.3
# via django
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from setuptools import find_packages, setup

install_requires = ["future", "six"]
install_requires = ["Django"]

test_requires = [
"tox",
Expand All @@ -25,7 +25,6 @@
]

local_dev_requires = [
"Django>=1.11.18",
"pip-tools",
"check-manifest",
]
Expand Down