You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From discussion with @juliasilge, let's set up a github action to ensure that changes made to R pins are compatible with the current version of python. E.g. save the pins from R, and the run py pins to ensure it can read, search, list, etc..
The text was updated successfully, but these errors were encountered:
We never did set up cross-language testing to read from a board created by the other side, to read a pin created from the other side, etc. Let's figure out why we would see a warning:
In python:
fromdotenvimportload_dotenvload_dotenv()
frompinsimportboard_s3frompins.tests.helpersimportBoardBuilderbb=BoardBuilder("s3")
board=bb.create_tmp_board("pins/tests/pins-compat")
# list path to temporary pins bucket, for copying into Rboard.board
Switching to R:
board<- board_s3(<bucket_from_above>, prefix="<prefix_from_above>/")
# note that this also prints a warningboard %>% board_manifest()
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.
From discussion with @juliasilge, let's set up a github action to ensure that changes made to R pins are compatible with the current version of python. E.g. save the pins from R, and the run py pins to ensure it can read, search, list, etc..
The text was updated successfully, but these errors were encountered: