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 94756b8 commit 55946c8
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 35 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/install-git-url.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,14 @@ jobs:
- ubuntu-latest
- windows-latest
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'
exclude:
# Not available for ARM macOS:
- python-version: '3.7'
os: macos-latest
- python-version: 'pypy-3.7'
os: macos-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/install-zip-url.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,14 @@ jobs:
- ubuntu-latest
- windows-latest
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'
exclude:
# Not available for ARM macOS:
- python-version: '3.7'
os: macos-latest
- python-version: 'pypy-3.7'
os: macos-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
14 changes: 3 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,33 +23,25 @@ jobs:
- ubuntu-latest
- windows-latest
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
os: ubuntu-latest
- python-version: '3.7'
- python-version: '3.8'
toxenv: typing
os: ubuntu-latest
- python-version: '3.7'
- python-version: '3.8'
toxenv: py-oldsetup
os: ubuntu-latest
exclude:
# Not available for ARM macOS:
- python-version: '3.7'
os: macos-latest
- python-version: 'pypy-3.7'
os: macos-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tools/minimum-vcs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-buster
FROM python:3.8-buster
RUN set -ex; \
cd tmp; \
wget http://snapshot.debian.org/archive/debian/20121102T092448Z/pool/main/g/git/git-man_1.8.0-1_all.deb; \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tools/no-vcs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-slim
FROM python:3.8-slim
RUN set -ex; \
pip install --upgrade pip wheel; \
pip install --upgrade --upgrade-strategy=eager tox
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v3.2.0 (in development)
-----------------------
- Drop support for Python 3.7

v3.1.1 (2024-04-29)
-------------------
- Correctly mark a certain test as requiring Mercurial
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ extraction & calculation.

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

Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Changelog
=========

v3.2.0 (in development)
-----------------------
- Drop support for Python 3.7


v3.1.1 (2024-04-29)
-------------------
- Correctly mark a certain test as requiring Mercurial
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ extraction & calculation.

Installation & Setup
====================
``versioningit`` requires Python 3.7 or higher. Just use `pip
``versioningit`` requires Python 3.8 or higher. Just use `pip
<https://pip.pypa.io>`_ for Python 3 (You have pip, right?) to install
``versioningit`` 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 = "versioningit"
dynamic = ["version"]
description = "Versioning It with your Version In Git"
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 :: Only",
"Programming Language :: Python :: 3",
"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/versioningit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<https://versioningit.rtfd.io> for more information.
"""

__version__ = "3.1.1"
__version__ = "3.2.0.dev1"
__author__ = "John Thorvald Wodder II"
__author_email__ = "[email protected]"
__license__ = "MIT"
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,py-oldsetup
envlist = lint,typing,py38,py39,py310,py311,py312,pypy3,py-oldsetup
skip_missing_interpreters = True
isolated_build = True
minversion = 3.3.0
Expand Down

0 comments on commit 55946c8

Please sign in to comment.