Skip to content

Request Python 3.11 and pandas 2.x #517

Request Python 3.11 and pandas 2.x

Request Python 3.11 and pandas 2.x #517

Workflow file for this run

# This workflow will install Python dependencies and run tests with a variety of Python
# versions. For more information see:
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# Adapted from: https://github.com/actions/starter-workflows/blob/master/ci/python-package.yml
#
# Copyright (c) 2020-2023 MeteoSwiss, created by F.P.A. Vogt; [email protected]
name: CI_pytest
on:
# Not required on push: no code should go to master directly.
#push:
# branches: [ master ]
pull_request:
branches: [ master, develop ]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.11']
steps:
# Checkout the repository
- name: Checkout current repository
uses: actions/checkout@v2
# Setup python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
# Check the python/conda setup
# Powershell syntax adapted from:
# https://stackoverflow.com/questions/63805/equivalent-of-nix-which-command-in-powershell
# Answer from: petrsnd
- name: Check the setup (I)
if: matrix.os == 'windows-latest'
run: |
Get-Command python | Select-Object -ExpandProperty Definition
echo $CONDA
- name: Check the setup (II)
if: matrix.os != 'windows-latest'
run: |
which python
which conda
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Here, let's install our module to make sure all the dependencies specified in setup.py are
# also installed
- name: Install our module
run: pip install -e .[dev]
# Read to run all the tests !
- name: Test dvas with pytest
run: |
pytest -s