Skip to content

Commit

Permalink
Merge pull request #102 from r9y9/fix-dep
Browse files Browse the repository at this point in the history
remove deprecated old code and drop py37 support
  • Loading branch information
r9y9 authored Jun 29, 2024
2 parents d24be59 + 463774f commit 8c73d75
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
python-version: 3.7
- os: ubuntu-latest
python-version: 3.8
- os: ubuntu-latest
Expand All @@ -36,7 +34,7 @@ jobs:
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install OS dependencies
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ enable_isort = true
enable_mypy = false
mypy_preset = "entry"
line_length = 88
py_version = "py37"
py_version = "py38"

[[tool.pysen.lint.mypy_targets]]
paths = ["pysptk", "tests"]
2 changes: 0 additions & 2 deletions pysptk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# coding: utf-8

"""
A python wrapper for `Speech Signal Processing Toolkit (SPTK)
<http://sp-tk.sourceforge.net>`_.
Expand Down
1 change: 0 additions & 1 deletion pysptk/_sptk.pyx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# coding: utf-8
# cython: boundscheck=True, wraparound=True

import numpy as np
Expand Down
2 changes: 0 additions & 2 deletions pysptk/conversion.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# coding: utf-8

"""
Other conversions
-----------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@ def finalize_options(self):
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
Expand Down

0 comments on commit 8c73d75

Please sign in to comment.