Skip to content

Commit d812923

Browse files
AmitMYclaude
andcommitted
chore: update required Python version to 3.10
Update GitHub Actions workflows and project configuration to require Python 3.10 instead of 3.9. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 658748c commit d812923

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v5 # Use the latest stable version
2020
with:
21-
python-version: '3.9' # Specify your Python version
21+
python-version: '3.10' # Specify your Python version
2222

2323
- name: Install Ruff
2424
run: pip install ruff

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v5 # Recommended: uses latest stable v5
2020
with:
21-
python-version: '3.9'
21+
python-version: '3.10'
2222
cache: 'pip' # Enable pip caching
2323

2424
- name: Install Dependencies

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = [
88
{ name = "Amit Moryossef", email = "amitmoryossef@gmail.com" },
99
]
1010
readme = "README.md"
11-
requires-python=">=3.9"
11+
requires-python=">=3.10"
1212
dependencies = [
1313
"pose-format",
1414
"scipy",

0 commit comments

Comments
 (0)