Skip to content

Commit 3f9d83e

Browse files
committed
Drop support for python 3.5 and 3.6
1 parent a6dec5f commit 3f9d83e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10']
16+
python-version: [3.7, 3.8, 3.9, '3.10']
1717

1818
steps:
1919
- uses: actions/checkout@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ make && source venv/bin/activate
6161

6262
### Requirements
6363

64-
- Python 3.5+
64+
- Python 3.7+
6565

6666
## Usage
6767

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
'requests >= 2.20; python_version >= "3.0"',
3535
"setuptools>=41.0.1",
3636
],
37-
python_requires=">=3.5",
37+
python_requires=">=3.7",
3838
project_urls={
3939
"Bug Tracker": (
4040
"https://github.com/listennotes/" "podcast-api-python/issues"
@@ -49,11 +49,10 @@
4949
"Operating System :: OS Independent",
5050
"Programming Language :: Python",
5151
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.5",
53-
"Programming Language :: Python :: 3.6",
5452
"Programming Language :: Python :: 3.7",
5553
"Programming Language :: Python :: 3.8",
5654
"Programming Language :: Python :: 3.9",
55+
"Programming Language :: Python :: 3.10",
5756
"Programming Language :: Python :: Implementation :: PyPy",
5857
"Topic :: Software Development :: Libraries :: Python Modules",
5958
],

0 commit comments

Comments
 (0)