Skip to content

chore: Remove numpy pin, pin datashader, drop Python 3.7 #133

chore: Remove numpy pin, pin datashader, drop Python 3.7

chore: Remove numpy pin, pin datashader, drop Python 3.7 #133

Workflow file for this run

name: pytest
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python: [3.7, 3.8, 3.9, '3.10', 3.11]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python }}
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[tests]
- name: Run pytest
run: pytest