Skip to content

Commit

Permalink
Drop support for Python 3.7
Browse files Browse the repository at this point in the history
- Minimum required python version to be 3.8.10, a last version which got regular bug fixes.
- tox: drop 3.7 and add 3.12
- Next aqtinstall release will be version 3.2.0

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
  • Loading branch information
miurahr committed Nov 28, 2023
1 parent d5faec0 commit 10456fa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ All notable changes to this project will be documented in this file.
`Unreleased`_
=============

Deprecated
----------
* Drop support for python 3.7

Fixed
-----
- Patch ``*.prl`` and ``*.pc`` for mingw (#640, #739)
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Installation
Requirements
------------

- Minimum Python version: 3.7.5
- Minimum Python version: 3.8.10

- Dependencies: requests, py7zr, semantic_version, patch, texttable, bs4, defusedxml, humanize

Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"bs4", # canonical name is beautifulsoup4
"defusedxml",
Expand Down Expand Up @@ -174,7 +174,7 @@ markers = [
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = check, docs, py{37,38,39,310,311}, py39d, mprof, fil, mypy
envlist = check, docs, py{38,39,310,311,312}, py39d, mprof, fil, mypy
isolated_build = True
[testenv]
Expand Down Expand Up @@ -248,4 +248,5 @@ python =
3.9: py39, docs, check, mypy
3.10: py310
3.11: py311
3.12: py312
"""

0 comments on commit 10456fa

Please sign in to comment.