Skip to content

Bump pandas, minor cleanup #1328

Bump pandas, minor cleanup

Bump pandas, minor cleanup #1328

Workflow file for this run

name: Install package
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
poetry:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
env:
PYTHONPATH: "."
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Test running with full Python path
run: |
poetry run python dftimewolf/cli/dftimewolf_recipes.py -h
- name: Test Python script shortcut
run: |
poetry run dftimewolf -h