Skip to content

Commit

Permalink
Merge pull request #20 from altescy/support-latest-python
Browse files Browse the repository at this point in the history
Support latest python
  • Loading branch information
altescy authored Nov 26, 2024
2 parents ae11227 + 8344407 commit d949962
Show file tree
Hide file tree
Showing 4 changed files with 410 additions and 458 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,34 @@ on:

jobs:
tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --extras pandas
make clean
run: poetry install --extras all

- name: Lint with pysen
run: |
make lint
run: make lint

- name: Test with pytest
run: |
make test
run: make test
Loading

0 comments on commit d949962

Please sign in to comment.