Skip to content

Commit

Permalink
Update test workflow
Browse files Browse the repository at this point in the history
Updates test workflow to use `requirements_dev` instead
of `requirements_minpandas`.
  • Loading branch information
maread99 committed Jan 14, 2025
1 parent 688a6b3 commit 9f7d226
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.13"]
include:
- python-version: "3.10"
requirements_file: requirements_dev.txt
- python-version: "3.13"
requirements_file: requirements_minpandas.txt

steps:
- uses: actions/checkout@v4
Expand All @@ -30,11 +25,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'etc/${{matrix.requirements_file}}'
cache-dependency-path: 'etc/requirements_dev.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r etc/${{matrix.requirements_file}}
pip install -r etc/requirements_dev.txt
pip install -e .
- name: Lint with flake8
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
]
dependencies = [
"numpy",
"pandas>=1.5",
"pandas",
"pyluach",
"toolz",
"tzdata",
Expand Down

0 comments on commit 9f7d226

Please sign in to comment.