Skip to content

Commit

Permalink
Stop support for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
chummersone committed Aug 31, 2022
1 parent 1817a4b commit 34f262f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Build the wavfile package.
"""

import pathlib
import sys
from setuptools import find_packages, setup
Expand Down Expand Up @@ -30,12 +36,12 @@
classifiers=[
"License :: OSI Approved :: MIT License",
"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",
],
python_requires='>=3.7',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion src/wavfile/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
The [semantic] version of the package.
"""

__VERSION__ = "3.2.1"
__VERSION__ = "4.0.0"

0 comments on commit 34f262f

Please sign in to comment.