Skip to content

Commit bc41a6d

Browse files
committed
Modernize Python versions
1 parent d113d3c commit bc41a6d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python: ["3.6", "3.7", "3.8", "3.9"]
11+
python: ["3.8", "3.9", "3.10", "3.11"]
1212

1313
steps:
1414
- uses: actions/checkout@v2

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ A second optional parameter to ``audio_open`` specifies which backends to try
5858
``available_backends`` function to get a list backends that are usable on the
5959
current system.
6060

61-
Audioread supports Python 3 (3.6+).
61+
Audioread supports Python 3 (3.8+).
6262

6363
Example
6464
-------

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,10 @@ classifiers = [
1515
'Topic :: Multimedia :: Sound/Audio :: Conversion',
1616
'Intended Audience :: Developers',
1717
'Programming Language :: Python :: 3',
18-
'Programming Language :: Python :: 3.6',
19-
'Programming Language :: Python :: 3.7',
2018
'Programming Language :: Python :: 3.8',
2119
'Programming Language :: Python :: 3.9',
2220
'Programming Language :: Python :: 3.10',
21+
'Programming Language :: Python :: 3.11',
2322
]
2423

2524
[project.optional-dependencies]

0 commit comments

Comments
 (0)