Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/packages/pyodps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ versions:
- filename: pyodps-0.13.1-cp314-cp314t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
sha256: 9c458b5d505b8b1e544feafb224ebf0b1162e8ee44f6dc6c6bf0119d4594d61c
requires-python: '>=3.7'
- version: 0.13.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
From c79e99f48d22146ed07a06c32896ed38936f816a Mon Sep 17 00:00:00 2001
From: Ludovic Henry <git@ludovic.dev>
Date: Thu, 10 Sep 2026 15:42:37 +0200
Subject: [PATCH] rename License to LICENSE so setuptools and MANIFEST.in pick
it up

setuptools' default license_files glob is LICEN[CS]E* and MANIFEST.in
has `include LICENSE`, both case-sensitive. The repo's actual file is
named "License" (mixed case), so neither matches on the case-sensitive
filesystem the sdist/wheel are built on -- verified against the real
pyodps-0.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
from PyPI, whose dist-info carries no license file at all despite the
package declaring itself Apache-2.0 licensed.

Renaming to LICENSE (case matching, content unchanged) makes both
mechanisms pick it up with no setup.py/pyproject.toml change.

Upstream-Status: To upstream [blocked: this port may only touch riseproject-dev/python-wheels]
---
License => LICENSE | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename License => LICENSE (100%)

diff --git a/License b/LICENSE
similarity index 100%
rename from License
rename to LICENSE
Loading