Skip to content

Commit

Permalink
Drop support for Python 3.7
Browse files Browse the repository at this point in the history
Support has been dropped upstream.
  • Loading branch information
francoisfreitag committed Jul 22, 2023
1 parent 19b82b1 commit 67fae02
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ jobs:
- dj41
- dj42
include:
- python-version: 3.7
tox-environment: dj32
- python-version: '3.10'
tox-environment: djmain
- python-version: '3.11'
Expand Down
5 changes: 5 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.11"

python:
install:
- requirements: docs/requirements.txt
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "django-phonenumber-field"
requires-python = ">=3.7"
requires-python = ">=3.8"
description = "An international phone number field for django models."
readme = "README.rst"
authors = [
Expand All @@ -24,7 +24,6 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ commands =
[testenv:black]
basepython = python3
commands =
black --target-version=py37 --check --diff .
black --target-version=py38 --check --diff .
deps =
black
skip_install = true
Expand Down

0 comments on commit 67fae02

Please sign in to comment.