You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by as...@apache.org on 2022/12/28 15:26:38 UTC

[arrow] branch master updated: MINOR: [R] Should build ignore __pycache__ directory (#15076)

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 <50...@users.noreply.github.com>
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 <ts...@gmail.com>
    Co-authored-by: eitsupi <50...@users.noreply.github.com>
    Co-authored-by: Jacob Wujciak-Jens <ja...@wujciak.de>
    Signed-off-by: Jacob Wujciak-Jens <ja...@wujciak.de>
---
 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__$