Skip to content

Commit

Permalink
Automated Latest Dependency Updates (#120)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Gaurav Sheni <[email protected]>
  • Loading branch information
3 people authored Aug 1, 2024
1 parent 5ef5fc1 commit 248b167
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/minimum.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Unit Tests Minimum Versions

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
pull_request:
types: [opened, reopened]

jobs:
minimum:
runs-on: ${{ matrix.os }}
Expand All @@ -18,8 +19,14 @@ jobs:
- os: macos-latest
python-version: '3.12'
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} for arm64
if: ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.8' }}
uses: "gabrielfalcao/pyenv-action@v17"
with:
default: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
if: ${{ matrix.os != 'macos-latest' || matrix.python-version != '3.8' }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion latest_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy==1.26.4
pandas==2.2.2
torch==2.3.1
torch==2.4.0
tqdm==4.66.4

0 comments on commit 248b167

Please sign in to comment.