Skip to content

Commit

Permalink
Fix pre-release of keras installing
Browse files Browse the repository at this point in the history
  • Loading branch information
cabrust committed Oct 8, 2021
1 parent 2ad4b90 commit 383e8ec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9' ]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pip install chia
```
or clone this repository, and run:
```bash
python setup.py develop
pip install -e .
```

To run the [example experiment](examples/experiment.py) which makes sure that everything works, use the following command:
Expand Down
2 changes: 1 addition & 1 deletion quick-venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
python3.9 -m venv venv
source venv/bin/activate
python3.9 -m pip install -U pip setuptools
python3.9 setup.py develop
python3.9 -m pip install -e .

0 comments on commit 383e8ec

Please sign in to comment.