Skip to content

Commit

Permalink
Fixing failing pip check (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
amontanez24 authored Oct 22, 2024
1 parent 1baf785 commit 72f4ba1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/minimum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,14 @@ jobs:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest]
include:
- os: macos-latest
- os: macos-13
python-version: '3.8'
- os: macos-latest
python-version: '3.12'
steps:
- 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
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# History

### v0.6.1 - 2024-10-21
### v0.6.1 - 2024-10-22

### Bugs Fixed

* Pip check fails with pip==24.2 on minimum tests - Issue [#130](https://github.com/sdv-dev/DeepEcho/issues/130) by @amontanez24
* Cap numpy to less than 2.0.0 until DeepEcho supports - Issue [#117](https://github.com/sdv-dev/DeepEcho/issues/117) by @gsheni

### Internal
Expand Down

0 comments on commit 72f4ba1

Please sign in to comment.