-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get tests working and make it easy to keep them working (#56)
* Make the page consistent Above it says `Supports Django 2.0+` Requirements contradicts that. * Fixes #53 TEMPLATE_LOADERS is deprecated as of 1.8 and 1.8 is the base version requirement. https://docs.quantifiedcode.com/python-anti-patterns/django/1.8/migration/template_loaders_deprecated.html * Add installation instructions. Partially addresses #48 * Fixing test runs for Django 2.2 * Fixing test runs for Django 2.2 * Tests work on Django 1.8-2.2 Tox implemented to check it. Travis is next * Travis, first try * Trying to get newer python versions * Tox passes locally on all python versions * Version py37-G definition was missing * Added Travis imagery
- Loading branch information
Showing
13 changed files
with
282 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
dist: xenial | ||
sudo: false | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
- "3.7" | ||
install: pip install tox-travis | ||
script: tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup(name='django-softdelete', | ||
version='0.9.0', | ||
version='0.9.1', | ||
description='Soft delete support for Django ORM, with undelete.', | ||
author='Steve Coursen', | ||
author_email='[email protected]', | ||
maintainer='Steve Coursen', | ||
maintainer_email='[email protected]', | ||
license="BSD", | ||
zip_safe=True, | ||
url="https://github.com/scoursen/django-softdelete", | ||
packages=find_packages(), | ||
install_requires=['setuptools',], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.