Skip to content

Commit d47150f

Browse files
DanMeonclaude
andcommitted
fix: sdist 에서 external/rhwp 대용량 자산 제외 — PyPI 100MB 초과 해소
native-skia wheel 은 6 MB 로 정상이나 sdist 가 external/rhwp 의 samples/pdf/ mydocs/web/rhwp-studio 를 vendoring 해 111 MB → PyPI 100 MB 한도 초과로 업로드 400 Bad Request. 빌드 불필요 자산을 maturin exclude 에 추가해 9.8 MB 로 축소. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent fe818a3 commit d47150f

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,15 @@ exclude = [
140140
{ path = "**/node_modules/**", format = "sdist" },
141141
{ path = "**/__pycache__/**", format = "sdist" },
142142
{ path = "**/target/**", format = "sdist" },
143-
# ^ external/rhwp/samples ≈ 60 MB 테스트 fixture — sdist 에서 제외해 PyPI 100 MB 한도 준수
143+
# ^ external/rhwp 의 빌드 불필요 대용량 자산 — sdist 에서 제외해 PyPI 100 MB 한도 준수
144144
{ path = "**/samples/**", format = "sdist" },
145+
{ path = "**/pdf/**", format = "sdist" },
146+
{ path = "**/pdf-large/**", format = "sdist" },
147+
{ path = "**/pdf-2020/**", format = "sdist" },
148+
{ path = "**/pdf-2010/**", format = "sdist" },
149+
{ path = "**/mydocs/**", format = "sdist" },
150+
{ path = "**/web/**", format = "sdist" },
151+
{ path = "**/rhwp-studio/**", format = "sdist" },
145152
]
146153

147154
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)