anthony sottile
anthony sottile
yarn's default for `linkFolder` is in the default for `$XDG_CONFIG_HOME`: ```console $ yarn config current | grep linkFolder "linkFolder": "/Users/asottile/.config/yarn/link", ``` the default for `XDG_CONFIG_HOME` is `~/.config` applying `XDG_DATA_HOME` changes...
**Bug Report** (A clear and concise description of what the bug is.) **To Reproduce** ```python import ast from typing import NamedTuple class C(NamedTuple): value: ast.expr ``` **Expected Behavior** not crash...
this is a stepping stone to get to a more modern docker / node
compare: ``` wget https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst wget https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-lto-full.tar.zst mkdir x64 arm64 tar -C x64 -xf cpython-3.12.1+20240107-x86_64-unknown-linux-gnu-pgo+lto-full.tar.zst tar -C arm64 -xf cpython-3.12.1+20240107-aarch64-unknown-linux-gnu-lto-full.tar.zst ``` ```console $ grep clang arm64/python/install/lib/python3.12/_sysconfigdata_* $ grep clang x64/python/install/lib/python3.12/_sysconfigdata_* 'BLDSHARED':...
admittedly this is pointing out a real warning in `watchdog` -- but it makes it not installable using specifically these pythons: ```bash wget https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-pgo+lto-full.tar.zst tar -xf cpython-3.12.1+20240107-x86_64-apple-darwin-pgo+lto-full.tar.zst ./python/install/bin/python3 -m pip...
this is a perplexing one... ```console $ wget https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-pgo+lto-full.tar.zst $ sha256sum cpython-3.12.1+20240107-x86_64-apple-darwin-pgo+lto-full.tar.zst bf2b176b0426d7b4d4909c1b19bbb25b4893f9ebdc61e32df144df2b10dcc800 cpython-3.12.1+20240107-x86_64-apple-darwin-pgo+lto-full.tar.zst ``` *sometimes* this fails: ```console $ rm -rf pythons && mkdir -p pythons/cp312-cp312 && tar -C...
also reported here: https://github.com/indygreg/python-build-standalone/issues/210 here's a quick reproduction: ```bash wget https://github.com/indygreg/python-build-standalone/releases/download/20240107/cpython-3.12.1+20240107-x86_64-apple-darwin-pgo+lto-full.tar.zst tar -xf cpython-3.12.1+20240107-x86_64-apple-darwin-pgo+lto-full.tar.zst ./python/install/bin/python3 -m pip wheel watchdog --no-deps ``` fails with: ``` ... running build_ext building '_watchdog_fsevents' extension...
split out from my "enable bytes warnings" branch I also needed to add some `responses` mocks as these tests were hitting public github (!!!)