Skip to content

Commit

Permalink
Do not restrict torch = "<=2.0.0" (#36)
Browse files Browse the repository at this point in the history
* Do not restrict torch = "<=2.0.0"

* Restrict problematic pytorch versions

pytorch/pytorch#100974

* Set poetry to 1.7.0 in tests

* Add Python 3.11 to tests

* Rollback installing poetry 1.7.0

* Set PYTORCH_MPS_HIGH_WATERMARK_RATIO to 0.7 in tests

* Remove macos from workflow

* Allow python 3.12

* Rollback to python 3.8-3.11

* Enable macos in tests back again

* Add CPU version of torch in dev group

* Fix using pytorch CPU version

* Separate dev dependency to pytorch per platform

* Disable tests on macos
  • Loading branch information
kacperlukawski committed Nov 14, 2023
1 parent 398a5d3 commit 6c529ce
Show file tree
Hide file tree
Showing 3 changed files with 597 additions and 656 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/unit-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ jobs:
- '3.8.x'
- '3.9.x'
- '3.10.x'
- '3.11.x'
os:
- ubuntu-20.04
- windows-latest
- macos-latest
# - macos-latest

runs-on: ${{ matrix.os }}

Expand All @@ -43,7 +44,7 @@ jobs:
virtualenvs-in-project: true

- name: Install dependencies
run: poetry install --no-interaction --no-root
run: poetry install --no-interaction --no-root --with dev

- name: Run tests
run: |
Expand Down

0 comments on commit 6c529ce

Please sign in to comment.