fix: 릴리스 verify 가 tomllib 을 쓰다 3.10 에서 죽던 문제 - #58
Merged
Conversation
v0.1.0 태그를 밀었더니 verify 잡이 ModuleNotFoundError: No module named 'tomllib' 로 실패했다. tomllib 은 3.11+ 인데 이 잡은 python-version 3.10 이다. 이 잡의 목적은 최소 지원 버전에서 테스트까지 돌리는 것이므로 Python 을 올리는 대신 파싱 방식을 바꿨다 — sed 로 읽고, 빈 값이면 명시적으로 실패한다. 근본 원인은 릴리스 워크플로가 태그를 밀 때만 실행돼 PR 단계에서 한 번도 검증되지 않았다는 점이다. ci.yml 에 같은 추출 로직을 돌리는 단계를 추가해 다음부터는 PR 에서 걸리게 했다. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FR3Lm3SnJ329MQV4SwTsut
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
v0.1.0태그를 밀었더니verify잡이 즉시 실패했다.tomllib은 Python 3.11+ 인데 이 잡은python-version: "3.10"이다.수정
이 잡의 목적은 최소 지원 버전(3.10)에서 테스트까지 돌리는 것이므로, Python 을 올리는 대신 파싱 방식을 바꿨다 —
sed로 읽고 빈 값이면 명시적으로 실패한다.근본 원인
release.yml은 태그를 밀 때만 실행돼서 PR 단계에서 한 번도 검증되지 않았다. CI 가 전부 초록불이었는데도 릴리스가 첫 시도에 죽은 이유다.ci.yml에 같은 추출 로직을 돌리는 단계를 추가해 다음부터는 PR 에서 걸리게 했다.이후 절차
머지 후
v0.1.0태그를 지우고 새 커밋에서 다시 건다.🤖 Generated with Claude Code
https://claude.ai/code/session_01FR3Lm3SnJ329MQV4SwTsut