Skip to content

Commit 2053721

Browse files
authored
Merge pull request #1 from ListenNotes/new_py_versions
Support newer python versions.
2 parents f8109ba + 456da04 commit 2053721

File tree

3 files changed

+7
-40
lines changed

3 files changed

+7
-40
lines changed

.travis.yml

-33
This file was deleted.

setup.py

+4-4
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.7",
37+
python_requires=">=3.10",
3838
project_urls={
3939
"Bug Tracker": (
4040
"https://github.com/listennotes/" "podcast-api-python/issues"
@@ -49,10 +49,10 @@
4949
"Operating System :: OS Independent",
5050
"Programming Language :: Python",
5151
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.7",
53-
"Programming Language :: Python :: 3.8",
54-
"Programming Language :: Python :: 3.9",
5552
"Programming Language :: Python :: 3.10",
53+
"Programming Language :: Python :: 3.11",
54+
"Programming Language :: Python :: 3.12",
55+
"Programming Language :: Python :: 3.13",
5656
"Programming Language :: Python :: Implementation :: PyPy",
5757
"Topic :: Software Development :: Libraries :: Python Modules",
5858
],

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
envlist =
88
fmt
99
lint
10-
py{310,39,38,37}
10+
py{310,311,312,313}
1111
skip_missing_interpreters = true
1212

1313
[tool:pytest]
@@ -30,14 +30,14 @@ passenv = LDFLAGS,CFLAGS
3030

3131
[testenv:fmt]
3232
description = run code formatting using black
33-
basepython = python3.8
33+
basepython = python3.10
3434
deps = black==22.3.0
3535
commands = black . {posargs}
3636
skip_install = true
3737

3838
[testenv:lint]
3939
description = run static analysis and style check using flake8
40-
basepython = python3.8
40+
basepython = python3.10
4141
deps = flake8
4242
commands = python -m flake8 --show-source listennotes tests setup.py --max-line-length=100
4343
skip_install = true

0 commit comments

Comments
 (0)