Skip to content

Commit

Permalink
Test lower limits of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Nov 23, 2023
1 parent fc440f0 commit 09a0262
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .ci_support/environment-old.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
channels:
- conda-forge
dependencies:
- pandas =1.5.3
- scandir =1.10.0
33 changes: 33 additions & 0 deletions .github/workflows/unittests_old.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Unittest Lower Bound

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2.2.0
with:
python-version: '3.9'
mamba-version: "*"
channels: conda-forge
channel-priority: strict
auto-update-conda: true
environment-file: .ci_support/environment-old.yml
miniforge-variant: Mambaforge
- name: Setup
shell: bash -l {0}
run: |
pip install --no-deps .
- name: Test
shell: bash -l {0}
run: python -m unittest discover tests

0 comments on commit 09a0262

Please sign in to comment.