| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
@nodejs/python |
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
|
@VoltrexKeyva Can you please create a pull request for all the non-pathlib changes so we can see if we can get that one to pass the tests and land first? |
Sorry, something went wrong.
Sorry, something went wrong.
|
@cclauss fortunately there are no failures, should we land this now? |
Sorry, something went wrong.
|
Nice! Two approvals are above. |
Sorry, something went wrong.
Commit Queue failed- Loading data for nodejs/node/pull/47581 ✔ Done loading data for nodejs/node/pull/47581 ----------------------------------- PR info ------------------------------------ Title build: use pathlib for paths (#47581) Author Mohammed Keyvanzadeh (@VoltrexKeyva) Branch VoltrexKeyva:use-pathlib -> nodejs:main Labels build, python, author ready, needs-ci Commits 1 - build: use pathlib for paths Committers 1 - Mohammed Keyvanzadeh PR-URL: https://github.com/nodejs/node/pull/47581 Reviewed-By: Yagiz Nizipli Reviewed-By: Christian Clauss ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/47581 Reviewed-By: Yagiz Nizipli Reviewed-By: Christian Clauss -------------------------------------------------------------------------------- ⚠ Commits were pushed since the last review: ⚠ - build: use pathlib for paths ℹ This PR was created on Sun, 16 Apr 2023 14:21:56 GMT ✔ Approvals: 2 ✔ - Yagiz Nizipli (@anonrig): https://github.com/nodejs/node/pull/47581#pullrequestreview-1388073872 ✔ - Christian Clauss (@cclauss): https://github.com/nodejs/node/pull/47581#pullrequestreview-1388196158 ✔ Last GitHub CI successful ℹ Last Full PR CI on 2023-05-02T14:23:08Z: https://ci.nodejs.org/job/node-test-pull-request/51578/ - Querying data for job/node-test-pull-request/51578/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/4863726456 |
Sorry, something went wrong.
|
@cclauss this'll need an approval again, as new changes invalidates the older approvals. |
Sorry, something went wrong.
|
Rock & Roll... Thanks for doing this! |
Sorry, something went wrong.
Use Python's `pathlib` library for paths and related operations instead of `os.path`. Refs: #47323 (comment) #47323 (comment) PR-URL: #47581 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Christian Clauss <cclauss@me.com>
Use Python's `pathlib` library for paths and related operations instead of `os.path`. Refs: #47323 (comment) #47323 (comment) PR-URL: #47581 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Christian Clauss <cclauss@me.com>
Use Python's `pathlib` library for paths and related operations instead of `os.path`. Refs: nodejs#47323 (comment) nodejs#47323 (comment) PR-URL: nodejs#47581 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Christian Clauss <cclauss@me.com>
| # --with-icu-source processing | ||
| # now, check that they didn't pass --with-icu-source=deps/icu | ||
| elif with_icu_source and os.path.abspath(icu_full_path) == os.path.abspath(with_icu_source): | ||
| elif with_icu_source and Path(icu_full_path).resolve() == Path(with_icu_source).resolve(): |
There was a problem hiding this comment.
Ouch! icu_full_path can actually be a URL here, and so this change breaks Windows downloading completely. Not good..
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Use Python's pathlib library for paths and related operations instead of os.path.
Refs: #47323 (comment) #47323 (comment)