Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop django 1.11 and python 2.7 #353

Merged
merged 1 commit into from
Oct 30, 2020
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
10 changes: 0 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python

python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
Expand All @@ -18,7 +17,6 @@ services:

env:
matrix:
- DJANGO=1.11
- DJANGO=2.2
- DJANGO=3.0
- DJANGO=master
Expand Down Expand Up @@ -67,20 +65,12 @@ matrix:
script:
- DB_ENGINE=djongo DB_NAME=test tox -e $TOX_ENV
exclude:
- python: "nightly"
env: DJANGO=1.11
- python: "pypy"
env: DJANGO=2.2
- python: "pypy"
env: DJANGO=3.0
- python: "pypy"
env: DJANGO=master
- python: "2.7"
env: DJANGO=2.2
- python: "2.7"
env: DJANGO=3.0
- python: "2.7"
env: DJANGO=master
- python: "3.5"
env: DJANGO=3.0
- python: "3.5"
Expand Down
4 changes: 0 additions & 4 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,6 @@ when making a backup with the ``--encrypt`` or ``--decrypt`` option.
Email configuration
-------------------

.. note::

Django 1.6 won't send the full traceback

DBBACKUP_SEND_EMAIL
~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Compatibility
-------------

As we want to ensure a lot of platforms will be able to save data before
upgrading, Django-DBBackup supports PyPy, Python 2.7, 3.2 to 3.5 and Django
greater than 1.6.
upgrading, Django-DBBackup supports PyPy, 3.2 to 3.5 and Django
greater than 2.2

Other Resources
===============
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[tox]
envlist = py{2.7,3.5,3.6,3.7,pypy}-django1.11,py{3.5,3.6,3.7,3.8,nightly}-django2.2,py{3.6,3.7,3.8,nightly}-django{3.0,master},lint,docs,functional
envlist = py{3.5,3.6,3.7,3.8,nightly}-django2.2,py{3.6,3.7,3.8,nightly}-django{3.0,master},lint,docs,functional

[testenv]
passenv = *
setenv =
PYTHONDONTWRITEBYTECODE=1
basepython =
py2.7: python2.7
py3.5: python3.5
py3.6: python3.6
py3.7: python3.7
Expand All @@ -16,7 +15,6 @@ basepython =
pynightly: python
deps =
-rrequirements-tests.txt
django1.11: Django>=1.11,<1.12
django2.2: Django>=2.2,<2.3
django3.0: Django>=3.0,<3.1
djangomaster: https://github.com/django/django/archive/master.zip
Expand Down