Skip to content

Commit

Permalink
Modernize Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sampsyo committed Aug 17, 2023
1 parent d113d3c commit bc41a6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.6", "3.7", "3.8", "3.9"]
python: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ A second optional parameter to ``audio_open`` specifies which backends to try
``available_backends`` function to get a list backends that are usable on the
current system.

Audioread supports Python 3 (3.6+).
Audioread supports Python 3 (3.8+).

Example
-------
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ classifiers = [
'Topic :: Multimedia :: Sound/Audio :: Conversion',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]

[project.optional-dependencies]
Expand Down

0 comments on commit bc41a6d

Please sign in to comment.