Skip to content

Commit 8c73d75

Browse files
authored
Merge pull request #102 from r9y9/fix-dep
remove deprecated old code and drop py37 support
2 parents d24be59 + 463774f commit 8c73d75

File tree

6 files changed

+3
-10
lines changed

6 files changed

+3
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ jobs:
1616
strategy:
1717
matrix:
1818
include:
19-
- os: ubuntu-latest
20-
python-version: 3.7
2119
- os: ubuntu-latest
2220
python-version: 3.8
2321
- os: ubuntu-latest
@@ -36,7 +34,7 @@ jobs:
3634
with:
3735
submodules: true
3836
- name: Set up Python ${{ matrix.python-version }}
39-
uses: actions/setup-python@v1
37+
uses: actions/setup-python@v4
4038
with:
4139
python-version: ${{ matrix.python-version }}
4240
- name: Install OS dependencies

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ enable_isort = true
1818
enable_mypy = false
1919
mypy_preset = "entry"
2020
line_length = 88
21-
py_version = "py37"
21+
py_version = "py38"
2222

2323
[[tool.pysen.lint.mypy_targets]]
2424
paths = ["pysptk", "tests"]

pysptk/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
A python wrapper for `Speech Signal Processing Toolkit (SPTK)
53
<http://sp-tk.sourceforge.net>`_.

pysptk/_sptk.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
# cython: boundscheck=True, wraparound=True
32

43
import numpy as np

pysptk/conversion.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
Other conversions
53
-----------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,10 @@ def finalize_options(self):
178178
"Programming Language :: Cython",
179179
"Programming Language :: Python",
180180
"Programming Language :: Python :: 3",
181-
"Programming Language :: Python :: 3.7",
182181
"Programming Language :: Python :: 3.8",
183182
"Programming Language :: Python :: 3.9",
184183
"Programming Language :: Python :: 3.10",
184+
"Programming Language :: Python :: 3.11",
185185
"License :: OSI Approved :: MIT License",
186186
"Topic :: Scientific/Engineering",
187187
"Topic :: Software Development",

0 commit comments

Comments
 (0)