aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst2
-rw-r--r--ci/templates/.appveyor.yml6
-rw-r--r--pyproject.toml2
-rwxr-xr-xsetup.py3
-rw-r--r--tox.ini4
5 files changed, 7 insertions, 10 deletions
diff --git a/README.rst b/README.rst
index ce91d50..dd27135 100644
--- a/README.rst
+++ b/README.rst
@@ -53,7 +53,7 @@ It also allows you to verify a string quickly by providing commonly used regex p
Quick Start
=============
-To get started make sure you have Python 3.7-3.14 installed and then, install Edify from ``pip``:
+To get started make sure you have Python 3.8-3.14 installed and then, install Edify from ``pip``:
.. code-block:: bash
diff --git a/ci/templates/.appveyor.yml b/ci/templates/.appveyor.yml
index a64923b..956e594 100644
--- a/ci/templates/.appveyor.yml
+++ b/ci/templates/.appveyor.yml
@@ -4,9 +4,9 @@ image: Visual Studio 2019
environment:
matrix:
- TOXENV: check
- TOXPYTHON: C:\Python36\python.exe
- PYTHON_HOME: C:\Python36
- PYTHON_VERSION: '3.6'
+ TOXPYTHON: C:\Python38\python.exe
+ PYTHON_HOME: C:\Python38
+ PYTHON_VERSION: '3.8'
PYTHON_ARCH: '32'
{% for env in tox_environments %}
{% if env.startswith(('py2', 'py3')) %}
diff --git a/pyproject.toml b/pyproject.toml
index 50a796d..4dc0ff5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -6,5 +6,5 @@ requires = [
[tool.black]
line-length = 140
-target-version = ['py37']
+target-version = ['py38']
skip-string-normalization = true
diff --git a/setup.py b/setup.py
index 49cd13c..f615e10 100755
--- a/setup.py
+++ b/setup.py
@@ -46,7 +46,6 @@ setup(
'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',
@@ -70,7 +69,7 @@ setup(
keywords=[
# eg: 'keyword1', 'keyword2', 'keyword3',
],
- python_requires='>=3.7',
+ python_requires='>=3.8',
install_requires=[
# eg: 'aspectlib==1.1.1', 'six>=1.7',
],
diff --git a/tox.ini b/tox.ini
index d459d55..94a695a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -14,15 +14,13 @@ envlist =
clean,
check,
docs,
- {py37,py38,py39,py310,py311,py312,py313,py314,pypy37,pypy38},
+ {py38,py39,py310,py311,py312,py313,py314,pypy38},
report
ignore_basepython_conflict = true
[testenv]
basepython =
- pypy37: {env:TOXPYTHON:pypy3.7}
pypy38: {env:TOXPYTHON:pypy3.8}
- py37: {env:TOXPYTHON:python3.7}
py38: {env:TOXPYTHON:python3.8}
py39: {env:TOXPYTHON:python3.9}
py310: {env:TOXPYTHON:python3.10}