Skip to content

Commit 92f0eea

Browse files
committed
Removed support for python 3.7.
1 parent 8e6eb6f commit 92f0eea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/testing-and-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
12+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: setup python

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This project adheres to `Semantic Versioning <https://semver.org/>`_.
1010
* Created ``get_four_parshios`` function in parshios module.
1111
* Added support for python 3.12, and 3.13.
1212
* Changed to use IntEnums for parshios to make code more readable.
13+
* Removed support for python v3.7.
1314

1415
`2.2.0`_ (2023-02-28)
1516
=====================

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@ authors = [
1010
license = {file = "license.txt"}
1111
dynamic = ["description", "version"]
1212
readme = "README.rst"
13-
requires-python = ">=3.7"
13+
requires-python = ">=3.8"
1414
classifiers=[
1515
"Development Status :: 5 - Production/Stable",
1616
"Intended Audience :: Developers",
1717
"Topic :: Software Development :: Libraries :: Python Modules",
1818
"License :: OSI Approved :: MIT License",
1919
"Programming Language :: Python :: 3",
2020
"Programming Language :: Python :: 3 :: Only",
21-
"Programming Language :: Python :: 3.7",
2221
"Programming Language :: Python :: 3.8",
2322
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)