-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add exception handling + CI lint step #260
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
감사합니다. Changelog 도 업데이트 해주시겠어요?
@@ -19,7 +19,7 @@ export SRT_PASSWORD=<YOUR_SRT_PASSWORD> | |||
|
|||
pip install -e ".[test]" | |||
|
|||
black SRT | |||
pre-commit run --all-files |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
1. IP block case 2. Responsebody without resultMap case 3. Update installation.md python requirement
1. Add black version as test dependency 2. Add pre-commit as test dependency 3. Update docs/contribution.md ryanking13#259 (comment)
- Add exception handling | ||
([#259](https://github.com/ryanking13/SRT/issues/259)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#260 (review) 반영완료
@@ -27,7 +27,8 @@ Changelog = "https://github.com/ryanking13/SRT/blob/master/CHANGELOG.md" | |||
test = [ | |||
"pytest", | |||
"pytest-httpserver", | |||
"black", | |||
"black==23.12.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#260 (comment)
black 최신버전에서 동작이 변경되었습니다
@@ -1,6 +1,6 @@ | |||
# Installation | |||
|
|||
> Python Support: SRTrain requires **Python version >= 3.6** | |||
> Python Support: SRTrain requires **Python version >= 3.10** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이것도 누락된거같아서 같이 추가했어요
Resolves #259