Skip to content

Commit

Permalink
Merge branch 'master' into move_to_tf_2_16
Browse files Browse the repository at this point in the history
  • Loading branch information
cpmpercussion authored Aug 8, 2024
2 parents 6927722 + 09b593a commit 8686ec7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ permissions:

jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ubuntu-latest
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v4
Expand All @@ -35,4 +38,4 @@ jobs:
# stop the build if there are Python syntax errors or undefined names
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
1 change: 1 addition & 0 deletions keras_mdn_layer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
Provided under MIT License
"""

import os;os.environ["TF_USE_LEGACY_KERAS"]="1"
from tensorflow import keras
from tensorflow.keras import backend as K
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8686ec7

Please sign in to comment.