Skip to content

Commit

Permalink
Merge pull request #22 from clokep/drop-py35
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep authored Oct 6, 2020
2 parents f321b38 + 96abd26 commit c354de9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
dist: xenial
dist: bionic
language: python
# This version of python is only used to run tox.
python:
- 3.8
- 3.7
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ next (xxx xx, xxxx)

* ``render_block_to_string`` now forwards the ``Context`` passed as ``context`` parameter.
(`#21 <https://github.com/clokep/django-render-block/pull/21>`_, by @bblanchon)
* Drop support for Python 3.5, officially support Python 3.9.

0.7 (July 13, 2020)
===================
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Features
Requirements
============

Django Render Block supports Django 2.2, 3.0, and 3.1 on Python 3.5, 3.6, 3.7, and 3.8.
Django Render Block supports Django 2.2, 3.0, and 3.1 on Python 3.6, 3.7, 3.8, and 3.9.

Examples
========
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ def long_description():
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: ISC License (ISCL)',
],
install_requires=[
Expand Down
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@

[tox]
envlist =
py{35,36,37,38}-django22,
# Django 3.0 requires Python 3.6.
py{36,37,38}-django{30,31,master}
py{36,37,38,39}-django{22,30,31,master}
skip_missing_interpreters = True

[testenv]
Expand All @@ -18,5 +16,5 @@ deps =
Jinja2
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1b1,<3.2
django31: Django>=3.1,<3.2
djangomaster: https://codeload.github.com/django/django/zip/master

0 comments on commit c354de9

Please sign in to comment.