Skip to content

Commit 44d58f3

Browse files
committed
Drop support for Python 3.5
Python 3.5 already reached end-of-life
1 parent 9983e17 commit 44d58f3

File tree

6 files changed

+4
-5
lines changed

6 files changed

+4
-5
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version:
17-
- 3.5
1817
- 3.6
1918
- 3.7
2019
- 3.8

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Changes
22
=======
33

4+
- Dropped support for Python 3.5 which reached end-of-life
45
- Added support for MP4/iTunes album/artist tags
56
- Updated the package structure so that the scripts are located in the `rgain`
67
module. This means that they can now also be invoked using `python -m

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PY=3.5
1+
ARG PY=3.6
22
ARG BASE="python:${PY}-slim"
33

44
FROM $BASE

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ different audio files. I won't lay it all out for you here, go read it yourself.
1212

1313
## Requirements
1414

15-
- Python >= 3.5 -- http://python.org/
15+
- Python >= 3.6 -- http://python.org/
1616
- GStreamer -- http://gstreamer.org/
1717
- Cairo 2D -- https://www.cairographics.org/
1818

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ def run(self):
138138
"Intended Audience :: Developers",
139139
"License :: OSI Approved :: GNU General Public License (GPL)",
140140
"Programming Language :: Python :: 3",
141-
"Programming Language :: Python :: 3.5",
142141
"Programming Language :: Python :: 3.6",
143142
"Programming Language :: Python :: 3.7",
144143
"Programming Language :: Python :: 3.8",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py35,py36,py37,py38,py39
7+
envlist = py36,py37,py38,py39
88

99
[testenv]
1010
usedevelop = true

0 commit comments

Comments
 (0)