Skip to content

remove 3.12 because of pkg_resources deprecation #96

remove 3.12 because of pkg_resources deprecation

remove 3.12 because of pkg_resources deprecation #96

Workflow file for this run

name: Test CBsyst
on:
pull_request:
push:
branches: [master, dev]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Testing ${{ matrix.os }}, python ${{ matrix.python-version }}
shell: bash -l {0}
run: |
python -m pip install --upgrade pip
python -m pip install -e .
pushd tests/test_data/GLODAP_data && python get_GLODAP_data.py && popd
python -m unittest