Skip to content

scipy.signal.gaussian was moved to scipy.signal.windows.gaussian (#148) #13

scipy.signal.gaussian was moved to scipy.signal.windows.gaussian (#148)

scipy.signal.gaussian was moved to scipy.signal.windows.gaussian (#148) #13

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install poetry
run: pip install poetry
- name: Install project
run: poetry install --with dev
- name: Run pytest
run: poetry run pytest