Skip to content

Commit

Permalink
Drop support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed May 2, 2024
1 parent a1b4b8c commit f609276
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,19 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- 'pypy-3.7'
- 'pypy-3.8'
- 'pypy-3.9'
- 'pypy-3.10'
toxenv: [py]
include:
- python-version: '3.7'
- python-version: '3.8'
toxenv: lint
- python-version: '3.7'
- python-version: '3.8'
toxenv: typing
steps:
- name: Check out repository
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ v0.13.0 (in development)
------------------------
- Increase minimum wcwidth version to 0.2.9
- Migrated from setuptools to hatch
- Drop support for Python 3.7

v0.12.1 (2023-10-10)
--------------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Features:

Installation
============
``txtble`` requires Python 3.7 or higher. Just use `pip
``txtble`` requires Python 3.8 or higher. Just use `pip
<https://pip.pypa.io>`_ for Python 3 (You have pip, right?) to install
``txtble`` and its dependencies::

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "txtble"
dynamic = ["version"]
description = "Yet another plain-text table typesetter"
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = "MIT"
license-files = { paths = ["LICENSE"] }
authors = [
Expand All @@ -23,7 +23,6 @@ keywords = [
classifiers = [
"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
@@ -1,5 +1,5 @@
[tox]
envlist = lint,typing,py37,py38,py39,py310,py311,py312,pypy3
envlist = lint,typing,py38,py39,py310,py311,py312,pypy3
skip_missing_interpreters = True
isolated_build = True
minversion = 3.3.0
Expand Down

0 comments on commit f609276

Please sign in to comment.