Skip to content

Commit

Permalink
Bunch of maintenance fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
hameerabbasi committed Mar 27, 2022
1 parent 9d50c26 commit 15a4cba
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 167 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python: [3.7, 3.8, 3.9]
python: ['3.8', '3.9', '3.10']
numba_boundscheck: [0]
include:
- os: macos-latest
python: 3.9
python: '3.10'
- os: windows-latest
python: 3.9
python: '3.10'
- os: ubuntu-latest
python: 3.9
python: '3.10'
numba_boundscheck: 1
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
activate-environment: sparse-dev
allow-softlinks: true
environment-file: ci/environment.yml
python-version: 3.9
python-version: '3.10'
miniforge-variant: Mambaforge
use-only-tar-bz2: true
use-mamba: true
Expand Down
52 changes: 0 additions & 52 deletions azure-pipelines.yml

This file was deleted.

8 changes: 0 additions & 8 deletions ci/01-install.sh

This file was deleted.

17 changes: 0 additions & 17 deletions ci/azure-docs.yml

This file was deleted.

28 changes: 0 additions & 28 deletions ci/azure-steps.yml

This file was deleted.

16 changes: 0 additions & 16 deletions ci/environment-3.6.yml

This file was deleted.

16 changes: 0 additions & 16 deletions ci/environment-3.7.yml

This file was deleted.

16 changes: 0 additions & 16 deletions ci/environment-3.8.yml

This file was deleted.

5 changes: 0 additions & 5 deletions ci/environment.yml

This file was deleted.

2 changes: 1 addition & 1 deletion readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ build:
image: latest

python:
version: 3.7
version: '3.9'
pip_install: true
extra_requirements:
- docs
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ def parse_requires():
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
Expand All @@ -74,5 +74,5 @@ def parse_requires():
entry_points={
"numba_extensions": ["init = sparse._numba_extension:_init_extension"]
},
python_requires=">=3.6, <4",
python_requires=">=3.8, <4",
)

0 comments on commit 15a4cba

Please sign in to comment.