File tree Expand file tree Collapse file tree 4 files changed +16
-6
lines changed
Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ Imports:
3737 fastmap,
3838 glue,
3939 cli,
40- rlang
40+ rlang,
41+ dotty
4142Suggests:
4243 ggplot2,
4344 testthat (>= 2.1.0),
@@ -54,5 +55,5 @@ Suggests:
5455 jpeg
5556RoxygenNote: 7.3.2
5657VignetteBuilder: knitr
57- Remotes:
58+ Remotes:
5859 rstudio/reticulate
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ export("%<-active%")
5252export("%<>%")
5353export("%>%")
5454export("%py_class%")
55+ export(.)
5556export(Callback)
5657export(Constraint)
5758export(Layer)
@@ -786,6 +787,7 @@ export(use_virtualenv)
786787export(with_custom_object_scope)
787788export(zip_lists)
788789import(reticulate)
790+ importFrom(dotty,.)
789791importFrom(generics,compile)
790792importFrom(generics,fit)
791793importFrom(glue,trim)
Original file line number Diff line number Diff line change 22
33- Keras now uses ` reticulate::py_require() ` to resolve Python dependencies.
44 Calling ` install_keras() ` is no longer required (but is still supported).
5-
6- - ` use_backend() ` gains a ` gpu ` argument, to specify if a GPU-capable set of
7- dependencies should be resolved by ` py_require() ` .
85
9- - The progress bar in ` fit() ` , ` evaluate() ` and ` predict() ` now
6+ - ` use_backend() ` gains a ` gpu ` argument, to specify if a GPU-capable set of
7+ dependencies should be resolved by ` py_require() ` .
8+
9+ - The progress bar in ` fit() ` , ` evaluate() ` and ` predict() ` now
1010 defaults to not presenting during testthat tests.
1111
12+ - ` dotty::. ` is now reexported.
13+
1214## Added compatibility with Keras v3.8.0. User-facing changes:
1315
1416- New symbols:
Original file line number Diff line number Diff line change @@ -122,3 +122,8 @@ generics::compile
122122# ' @importFrom tensorflow evaluate
123123# ' @export
124124tensorflow :: evaluate
125+
126+
127+ # ' @importFrom dotty .
128+ # ' @export
129+ dotty :: .
You can’t perform that action at this time.
0 commit comments