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

Ignore tensorflow updates in dependabot #44

Merged
merged 3 commits into from
Sep 16, 2024
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/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@ updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
time: "07:00"
interval: weekly
open-pull-requests-limit: 3
allow:
- dependency-type: direct
ignore:
- dependency-name: tensorflow
commit-message:
prefix: "update: "
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
interval: weekly
time: "07:00"
commit-message:
prefix: "update: "
Expand Down
2 changes: 0 additions & 2 deletions examples/movielens/movielens.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,11 @@
"import numpy as np\n",
"import tensorflow as tf\n",
"import tensorflow_datasets as tfds\n",
"import tensorflow_recommenders as tfrs\n",
"\n",
"from tensorflow.keras.layers import Dense\n",
"from tensorflow.keras import Model\n",
"\n",
"from tf_tabular.builder import InputBuilder\n",
"from tf_tabular.utils import get_vocab\n",
"from .movielens_model import MovielensModel"
]
},
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
exclude = ["*.ipynb"]


[tool.pytest.ini_options]
Expand Down