From 248b167cd3d5c3e8fe6de7ece26bd05c9dcc8a74 Mon Sep 17 00:00:00 2001 From: SDV Team <98988753+sdv-team@users.noreply.github.com> Date: Thu, 1 Aug 2024 10:11:41 -0500 Subject: [PATCH] Automated Latest Dependency Updates (#120) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Gaurav Sheni --- .github/workflows/minimum.yml | 13 ++++++++++--- latest_requirements.txt | 2 +- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/minimum.yml b/.github/workflows/minimum.yml index 8e10b46..3b6cf82 100644 --- a/.github/workflows/minimum.yml +++ b/.github/workflows/minimum.yml @@ -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 }} @@ -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 }} diff --git a/latest_requirements.txt b/latest_requirements.txt index 91affb5..0f35d9f 100644 --- a/latest_requirements.txt +++ b/latest_requirements.txt @@ -1,4 +1,4 @@ numpy==1.26.4 pandas==2.2.2 -torch==2.3.1 +torch==2.4.0 tqdm==4.66.4