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 cee0af3 commit 974d80e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 10 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
v1.6.0 (in development)
-----------------------
- Drop support for Python 3.7

v1.5.0 (2024-02-24)
-------------------
- **Bugfix**: Fix parsing of "true" `data-core-metadata` attributes and
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -41,7 +41,7 @@ information.

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

python3 -m pip install pypi-simple
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.rst
Expand Up @@ -3,6 +3,11 @@
Changelog
=========

v1.6.0 (in development)
-----------------------
- Drop support for Python 3.7


v1.5.0 (2024-02-24)
-------------------
- **Bugfix**: Fix parsing of "true" ``data-core-metadata`` attributes and
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -29,7 +29,7 @@ metadata URL.

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

python3 -m pip install pypi-simple
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Expand Up @@ -7,7 +7,7 @@ name = "pypi-simple"
dynamic = ["version"]
description = "PyPI Simple Repository API client library"
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = "MIT"
license-files = { paths = ["LICENSE"] }
authors = [
Expand All @@ -26,7 +26,6 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"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 src/pypi_simple/__init__.py
Expand Up @@ -14,7 +14,7 @@
for more information.
"""

__version__ = "1.5.0"
__version__ = "1.6.0.dev1"
__author__ = "John Thorvald Wodder II"
__author_email__ = "pypi-simple@varonathe.org"
__license__ = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -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 974d80e

Please sign in to comment.