diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4c2b64c..843a549 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,6 +1,7 @@ variables: CIBW_TEST_COMMAND: "pip install -r {project}/requirements/tests.txt && pytest --pyargs uarray" CIBW_BUILD: cp3?-* pp3?-* + CIBW_SKIPL: cp35-* pp35-* CIBW_BEFORE_BUILD: "git clean -xdf && git reset --hard HEAD" jobs: diff --git a/ci/azure-steps.yml b/ci/azure-steps.yml index c456e68..a983daa 100644 --- a/ci/azure-steps.yml +++ b/ci/azure-steps.yml @@ -2,7 +2,7 @@ steps: - task: UsePythonVersion@0 - bash: | python -m pip install --upgrade pip - pip install cibuildwheel==1.6.1 + pip install cibuildwheel==1.6.3 cibuildwheel --output-dir wheelhouse . - task: PublishBuildArtifacts@1 inputs: {pathtoPublish: 'wheelhouse'} diff --git a/ci/azure-test-scipy-fft.yml b/ci/azure-test-scipy-fft.yml index 3a50787..4802625 100644 --- a/ci/azure-test-scipy-fft.yml +++ b/ci/azure-test-scipy-fft.yml @@ -1,5 +1,5 @@ steps: -- {task: UsePythonVersion@0, inputs: {versionSpec: '3.5'}} +- {task: UsePythonVersion@0, inputs: {versionSpec: '3.6'}} - bash: | python -m pip install "scipy==1.4" python -m pip install pytest diff --git a/setup.py b/setup.py index 8e77a19..c0b43db 100644 --- a/setup.py +++ b/setup.py @@ -85,9 +85,10 @@ def build_extension(self, ext): "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3 :: Only", "Intended Audience :: Developers", "Intended Audience :: Science/Research", @@ -97,6 +98,6 @@ def build_extension(self, ext): "Source": "https://github.com/Quansight-Labs/uarray/", "Tracker": "https://github.com/Quansight-Labs/uarray/issues", }, - python_requires=">=3.5, <4", + python_requires=">=3.6, <4", ext_modules=extensions, )