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

Update Python #1419

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.13'
- name: Install Poetry
uses: snok/install-poetry@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.13'
- name: install semgrep
env:
DEBIAN_FRONTEND: noninteractive
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.13'
- name: install semgrep
env:
DEBIAN_FRONTEND: noninteractive
Expand Down
10 changes: 3 additions & 7 deletions gamutrflib/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gamutrflib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ packages = [
numpy = "2.2.4"
scipy = "1.15.2"
pandas = "2.2.3"
python = ">=3.10,<3.13"
python = ">=3.13,<3.14"
pyzmq = "26.3.0"
zstandard = "0.23.0"

Expand Down
65 changes: 13 additions & 52 deletions gamutrfwaterfall/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gamutrfwaterfall/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ matplotlib = "3.10.1"
numpy = "2.2.4"
pandas = "2.2.3"
pycairo = "1.27.0"
python = ">=3.10,<3.13"
python = ">=3.13,<3.14"
pyzmq = "26.3.0"
scipy = "1.15.2"
zstandard = "0.23.0"
Expand Down
52 changes: 4 additions & 48 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ paho-mqtt = "2.1.0"
pandas = "2.2.3"
pbr = "6.1.1"
prometheus_client = "0.21.1"
python = ">=3.10,<3.13"
python = ">=3.13,<3.14"
pyzmq = "26.3.0"
requests = "2.32.3"
sigmf = "1.2.6"
Expand Down
2 changes: 1 addition & 1 deletion utils/mavlink-api/Dockerfile.mavlink-api
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# nosemgrep:github.workflows.config.dockerfile-source-not-pinned
FROM python:3.11-slim
FROM python:3.13-slim

WORKDIR /app
ENV PYTHONPATH=${PYTHONPATH}:${PWD}
Expand Down
2 changes: 1 addition & 1 deletion utils/mavlink-api/Dockerfile.mqtt-publisher
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# nosemgrep:github.workflows.config.dockerfile-source-not-pinned
FROM python:3.11-slim
FROM python:3.13-slim

WORKDIR /app
ENV PYTHONPATH=${PYTHONPATH}:${PWD}
Expand Down
19 changes: 2 additions & 17 deletions utils/mavlink-api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion utils/mavlink-api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["lk-iqt <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.10,<3.13"
python = ">=3.13,<3.14"
Flask = "^3.0.0"
pymavlink = "^2.4.40"
pyserial = "^3.5"
Expand Down
Loading