Skip to content

Commit

Permalink
Drop support for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Oct 16, 2022
1 parent 6fe282c commit da9ac75
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 @@ -13,20 +13,18 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy-3.6'
- 'pypy-3.7'
- 'pypy-3.8'
- 'pypy-3.9'
toxenv: [py]
include:
- python-version: '3.6'
- python-version: '3.7'
toxenv: lint
- python-version: '3.6'
- python-version: '3.7'
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
@@ -1,6 +1,7 @@
v0.13.0 (in development)
------------------------
- Support Python 3.9 and 3.10
- Drop support for Python 3.6

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

Installation
============
``txtble`` requires Python 3.6 or higher. Just use `pip
``txtble`` requires Python 3.7 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 setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ classifiers =
#Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand All @@ -42,7 +41,7 @@ packages = find:
package_dir =
=src
include_package_data = True
python_requires = ~=3.6
python_requires = ~=3.7
install_requires =
attrs >= 18.1
wcwidth ~= 0.2.0
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,py36,py37,py38,py39,py310,pypy3
envlist = lint,typing,py37,py38,py39,py310,pypy3
skip_missing_interpreters = True
isolated_build = True
minversion = 3.3.0
Expand Down

0 comments on commit da9ac75

Please sign in to comment.