- Add GTM script (GTM-TLMMNZ7S) to <head> section of docs/index.html
- Add noscript iframe fallback after <body> tag
- Use the same GTM container as mjun0812.github.io for unified analytics
Add update_readme_coverage.py script that calculates per-platform
package coverage using check_missing_packages.py logic and updates
README.md with shields.io badges and a summary table. Integrate
the script into both the daily stats workflow and the build workflow.
Add GitHub Issue Forms template for requesting pre-built wheels
with fields for Flash Attention, Python, PyTorch, CUDA versions
and platform selection. Enable blank issues via config.yml.
- Expand LINUX_SELF_HOSTED_MATRIX with torch 2.6.0-2.9.1 and CUDA
12.4/12.8/13.0 to cover 29 missing Linux x86_64 packages
- Add torch 2.9.1 to LINUX_ARM64_MATRIX for 9 missing ARM64 packages
- Enable linux_arm64 matrix in main() output
gcc-toolset-14 (GCC 14) in manylinux_2_28 containers is incompatible
with CUDA 12.6 nvcc, causing compilation errors in type_traits headers.
Use gcc-toolset-13 instead and export CC/CXX to GITHUB_ENV to ensure
subsequent steps use the correct compiler.
- Add NVCC_APPEND_FLAGS="--allow-unsupported-compiler" to Linux build
script to support gcc-toolset-14 in manylinux_2_28 containers
- Resolves CUDA 12.6 compilation failure with gcc versions later than 13
- Update CUDA versions in Linux self-hosted matrix
- Update Python, PyTorch, and CUDA versions in Windows self-hosted matrix
- Enable Windows self-hosted build and disable Linux ARM64 and Windows standard builds
- Refine exclusion logic in create_matrix.py to match actual support
- Update CUDA version support for PyTorch 2.9 and 2.10
- Remove temporary build exclusions
- Add `check_missing_packages.py` to compare GitHub releases with expected matrix and display status table.
- Update `.gitignore` to exclude `assets.json` and `.claude/plans`.
- Remove obsolete plan document for pandas 3.0 fix.
Return pd.Series with object dtype instead of modifying Series in-place
to avoid "setting an array element with a sequence" error when running
with pandas 3.0.0 in CI.