This is an automated email from the ASF dual-hosted git repository.
assignuser pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new aac30873fd MINOR: [R] Should build ignore __pycache__ directory
(#15076)
aac30873fd is described below
commit aac30873fd9b112d236a7359fcc8a60f04ebfead
Author: eitsupi <[email protected]>
AuthorDate: Thu Dec 29 00:26:30 2022 +0900
MINOR: [R] Should build ignore __pycache__ directory (#15076)
I noticed that the `inst/__pycache__` directory remains in the released R
arrow package version 10.0.1.
```r
system.file("__pycache__/demo_flight_server.cpython-38.pyc", package =
"arrow")
#> [1]
"/usr/local/lib/R/site-library/arrow/__pycache__/demo_flight_server.cpython-38.pyc"
```
Lead-authored-by: SHIMA Tatsuya <[email protected]>
Co-authored-by: eitsupi <[email protected]>
Co-authored-by: Jacob Wujciak-Jens <[email protected]>
Signed-off-by: Jacob Wujciak-Jens <[email protected]>
---
r/.Rbuildignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/r/.Rbuildignore b/r/.Rbuildignore
index 756b6faf11..b8f768a837 100644
--- a/r/.Rbuildignore
+++ b/r/.Rbuildignore
@@ -31,3 +31,4 @@ STYLE.md
^revdep$
^vignettes$
^PACKAGING\.md$
+^inst/__pycache__$