Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherrypick master #331

Merged
merged 9 commits into from
May 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ jobs:
matrix:
include:
- python-version: '3.7'
tf-version: '2.7'
tf-version: '2.8'
- python-version: '3.7'
tf-version: '2.11'
- python-version: '3.10'
# Python 3.10 only supports TF >= 2.8
tf-version: '2.8'
- python-version: '3.10'
tf-version: '2.11'
Expand All @@ -34,14 +33,16 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install coveralls

- name: Install dev packages
run: |
pip install ".[dev]"

- name: Install TF package
run: |
pip install tensorflow==${{ matrix.tf-version }}
# Fix proto dep issue in protobuf 4
pip install protobuf==3.20.*

- name: Lint with flake8
run: |
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ release.sh
benchmark/supervised/datasets/
benchmark/supervised/models/
datasets/
multi_modal_datasets/
*.h5

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
Loading