Skip to content

Commit

Permalink
Drop Python 3.7, GHA no longer supports it
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Jan 20, 2025
1 parent 93a5152 commit 22975b7
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ Changelog
=========


1.16.1 (unreleased)
1.17.0 (unreleased)
-------------------

- Nothing changed yet.
- Drop support for Python 3.7.


1.16.0 (2024-10-09)
Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ environment:
matrix:
# https://www.appveyor.com/docs/installed-software#python lists available
# versions
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python39"
- PYTHON: "C:\\Python310"
Expand Down
2 changes: 1 addition & 1 deletion eazysvn.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from xml.dom import minidom


__version__ = '1.16.1.dev0'
__version__ = '1.17.0.dev0'


#
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand All @@ -63,7 +62,7 @@
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Version Control',
],
python_requires=">=3.7",
python_requires=">=3.8",

py_modules=['eazysvn'],
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py37,py38,py39,py310,py311,py312,py313,pypy3
py38,py39,py310,py311,py312,py313,pypy3

[testenv]
deps =
Expand Down

0 comments on commit 22975b7

Please sign in to comment.