Skip to content

Commit 8214667

Browse files
committed
Drop support for Python 3.6 and 3.7
1 parent 2c32528 commit 8214667

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,18 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
python-version:
22-
- '3.7'
2322
- '3.8'
2423
- '3.9'
2524
- '3.10'
2625
- '3.11'
2726
- '3.12'
2827
- '3.13'
29-
- 'pypy-3.7'
3028
- 'pypy-3.8'
3129
- 'pypy-3.9'
3230
- 'pypy-3.10'
3331
toxenv: [py]
3432
include:
35-
- python-version: '3.7'
33+
- python-version: '3.8'
3634
toxenv: lint
3735
steps:
3836
- name: Check out repository

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ v0.7.0 (in development)
22
-----------------------
33
- Support Python 3.10, 3.11, 3.12, and 3.13
44
- Migrated from setuptools to hatch
5+
- Drop support for Python 3.6 and 3.7
56

67
v0.6.0 (2021-05-31)
78
-------------------

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ examples below).
3232

3333
Installation
3434
============
35-
``qypi`` requires Python 3.6 or higher. Just use version 6.0 or higher of `pip
35+
``qypi`` requires Python 3.8 or higher. Just use version 6.0 or higher of `pip
3636
<https://pip.pypa.io>`_ for Python 3 (You have pip, right?) to install ``qypi``
3737
and its dependencies::
3838

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "qypi"
77
dynamic = ["version"]
88
description = "Query PyPI from the command line"
99
readme = "README.rst"
10-
requires-python = ">=3.6"
10+
requires-python = ">=3.8"
1111
license = "MIT"
1212
license-files = { paths = ["LICENSE"] }
1313
authors = [
@@ -25,8 +25,6 @@ keywords = [
2525
classifiers = [
2626
"Programming Language :: Python :: 3 :: Only",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.6",
29-
"Programming Language :: Python :: 3.7",
3028
"Programming Language :: Python :: 3.8",
3129
"Programming Language :: Python :: 3.9",
3230
"Programming Language :: Python :: 3.10",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py36,py37,py38,py39,py310,py311,py312,py313,pypy3
2+
envlist = lint,py38,py39,py310,py311,py312,py313,pypy3
33
skip_missing_interpreters = True
44
isolated_build = True
55
minversion = 3.3.0

0 commit comments

Comments
 (0)