Skip to content

Commit

Permalink
Dropping support for 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
danjac committed Apr 4, 2021
1 parent 0052fae commit ba4e2ac
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This package provides helpers for server-side rendering of [Hotwired/Turbo](http

## Requirements

This library requires Python 3.7+ and Django 3.0+.
This library requires Python 3.8+ and Django 3.0+.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion doc/source/main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This package provides helpers for server-side rendering of `Hotwired/Turbo <http
Requirements
============

This library requires Python 3.7+ and Django 3.0+.
This library requires Python 3.8+ and Django 3.0+.

===============
Getting Started
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
long_description=open("README.md").read() + "\n\n" + open("CHANGES.md").read(),
long_description_content_type="text/markdown",
license="MIT",
python_requires=">=3.7",
python_requires=">=3.8",
requires=["django (>=3.0)"],
packages=find_packages("src"),
package_dir={"": "src"},
Expand All @@ -25,7 +25,6 @@
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
12 changes: 2 additions & 10 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
py{37,38,39}-django30
py{37,38,39}-django31
py{38,39}-django30
py{38,39}-django31
py{38,39}-djangodev

[testenv]
Expand All @@ -26,13 +26,5 @@ setenv =

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39

[testenv:qa]
deps =
django
prospector
commands =
prospector

0 comments on commit ba4e2ac

Please sign in to comment.