Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
moskomule committed Feb 1, 2023
1 parent 355e3a4 commit 2ba6a43
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: checkout
uses: actions/checkout@v3

- uses: actions/cache@v3
id: cache
with:
key: ${{ github.ref }}
path: .cache
path: ~/.cache/pip
key: ${{ runner.os }}-${{ hashFiles('**/pyproject.toml') }}

- name: setup python
uses: actions/setup-python@v4
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,7 @@ jobs:
with:
python-version: '3.10'

- name: install dependencies
run: |
pip install hatch
hatch env create tests
- name: test
run: |
pip install hatch
hatch run tests:pytest
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ See [examples](../examples).

## Installation

First, install `torch` and its accompanying `torchvision` [appropriately](pytorch.org). Then,
First, install `torch` and its accompanying `torchvision` [appropriately](https://pytorch.org). Then,

```console
pip install hypergrad
Expand Down

0 comments on commit 2ba6a43

Please sign in to comment.