Skip to content

Commit a7bc4f4

Browse files
committed
MAINT: Require 3.6+
1 parent 3ddeccb commit a7bc4f4

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

azure-pipelines.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ trigger:
88
- '*'
99
variables:
1010
CIBW_BUILDING: "true"
11-
CIBW_SKIP: "cp27-* cp34-* pp27-*"
11+
CIBW_SKIP: "cp27-* cp34-* cp35-* pp27-*"
1212
CIBW_TEST_COMMAND: "python -c \"import rtmixer; print(rtmixer.__version__)\""
1313
CIBW_BUILD_VERBOSITY: "2"
1414
CIBW_BEFORE_BUILD_LINUX: "yum install -y portaudio; pip install -U pip setuptools"
@@ -43,8 +43,6 @@ jobs:
4343
- job: windows
4444
pool: {vmImage: 'vs2017-win2016'}
4545
steps:
46-
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.5', architecture: x86}}
47-
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.5', architecture: x64}}
4846
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.6', architecture: x86}}
4947
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.6', architecture: x64}}
5048
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.7', architecture: x86}}

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
package_dir={'': 'src'},
1515
py_modules=['rtmixer'],
1616
cffi_modules=['rtmixer_build.py:ffibuilder'],
17-
python_requires='>=2.6',
17+
python_requires='>=3.6',
1818
setup_requires=[
1919
'CFFI>=1.4.0',
2020
'pa_ringbuffer', # for cdef()
@@ -36,7 +36,6 @@
3636
'License :: OSI Approved :: MIT License',
3737
'Operating System :: OS Independent',
3838
'Programming Language :: Python',
39-
'Programming Language :: Python :: 2',
4039
'Programming Language :: Python :: 3',
4140
'Topic :: Multimedia :: Sound/Audio',
4241
],

0 commit comments

Comments
 (0)