Conversation
Agent-Logs-Url: https://github.com/JS2IIU-MH/adiftools-dev/sessions/9c9df6a3-0e58-4b42-92c3-c5b47790a257 Co-authored-by: JS2IIU-MH <146515386+JS2IIU-MH@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
JS2IIU-MH
April 10, 2026 22:31
View session
Contributor
There was a problem hiding this comment.
Pull request overview
このPRは、既存のPythonパッケージに対して Python 3.14 向けの専用GitHub Actionsワークフローを追加し、将来のランタイム互換性をCIで確認できるようにする変更です。既存リポジトリの lint/test 自動化に、3.14 向けの実行経路を追加する位置づけです。
Changes:
.github/workflows/test_python314.ymlを新規追加し、Python 3.14 用のCIワークフローを定義- flake8 実行ジョブを追加
- pytest 実行ジョブを追加し、依存関係をインストールしてテストを実行
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+6
to
+41
| RunFlake8: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 20 | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| - name: Set up Python 3.14 | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.14' | ||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install flake8 | ||
| - name: Run test with flake8 | ||
| run: | | ||
| flake8 --max-line-length=100 $(git ls-files '*.py') | ||
|
|
||
| RunPytest: | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 20 | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| - name: Set up Python 3.14 | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.14' | ||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install pytest | ||
| pip install -r requirements.txt | ||
| - name: Run tests with pytest | ||
| run: | | ||
| pytest |
| - name: Set up Python 3.14 | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.14' |
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.
.github/workflows/test_python314.yml)