Python 3.13 지원#2
Merged
dev-bearabbit merged 8 commits intotossicat:mainfrom Nov 16, 2024
Merged
Conversation
item4
commented
Nov 14, 2024
| Err(error) => { | ||
| Err(PyValueError::new_err(format!("{}",error))) | ||
| } | ||
| Err(error) => Err(PyValueError::new_err(format!("{}", error))), |
Contributor
Author
There was a problem hiding this comment.
앗 에디터가 멋대로 컨벤션을 바꿔버렸네요...
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.
#[pymodule]사용법이 바뀌어 같이 대응합니다.GitHub Actions 상에서 3.13의 interpreter를 찾을 수 있는지는 확인되지 않았습니다.--find-interpreter로도 Python 3.13이 찾아질줄 알았는데 아니었습니다. 직접 지정해주는 방식으로 변경하였습니다.auto로 롤백했습니다.