Skip to content
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

Use Python 3.13 #117

Merged
merged 20 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
timeout-minutes: 5
strategy:
matrix:
python-version: ['3.12']
python-version: ['3.13']
os: [ubuntu-latest, windows-latest]
fail-fast: False

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
timeout-minutes: 5
strategy:
matrix:
python-version: ['3.12']
python-version: ['3.13']
os: [ubuntu-latest]
fail-fast: False
steps:
Expand Down
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
### VisualStudioCode template
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
.vscode/**

# Local History for Visual Studio Code
.history/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ AirbrakesV2/
```
## Local Setup

**This project uses Python 3.12. Using an older version may not work since we use newer language features**
**This project uses Python 3.13. Using an older version may not work since we use newer language features**

### Clone the repository:

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "AirbrakesV2"
description = "Logic for airbrakes as a part of the NASA Student Launch Competition"
requires-python = ">=3.12"
requires-python = ">=3.13"
version = "0.1.0"
dependencies = [
"gpiozero",
Expand Down Expand Up @@ -32,7 +32,7 @@ packages = ["airbrakes"]
# RUFF:
[tool.ruff]
line-length = 100
target-version = "py312"
target-version = "py313"
show-fixes = true
exclude = ["scripts"]

Expand Down
Loading