Skip to content
Merged
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/branch_deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
DAGSTER_CLOUD_URL: "http://nmbgmr-data-services.dagster.plus"
DAGSTER_CLOUD_API_TOKEN: ${{ secrets.DAGSTER_CLOUD_API_TOKEN }}
ENABLE_FAST_DEPLOYS: 'true'
PYTHON_VERSION: '3.10'
PYTHON_VERSION: '3.14'
DAGSTER_CLOUD_FILE: 'dagster_cloud.yaml'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
version: "latest"

- name: Set up Python
run: uv python install 3.10
run: uv python install 3.14

- name: Install dependencies
run: uv sync --extra dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
DAGSTER_CLOUD_URL: "http://nmbgmr-data-services.dagster.plus"
DAGSTER_CLOUD_API_TOKEN: ${{ secrets.DAGSTER_CLOUD_API_TOKEN }}
ENABLE_FAST_DEPLOYS: 'true'
PYTHON_VERSION: '3.10'
PYTHON_VERSION: '3.14'
DAGSTER_CLOUD_FILE: 'dagster_cloud.yaml'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/orchestration-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
version: "latest"

- name: Set up Python
run: uv python install 3.10
run: uv python install 3.14

- name: Install root package deps
run: uv sync --extra dev
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
id-token: write
steps:
- uses: actions/checkout@master
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v5
with:
python-version: 3.13
python-version: 3.14

- name: Install pypa/build
run: >-
Expand Down
2 changes: 1 addition & 1 deletion orchestration/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim
FROM python:3.14-slim

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion orchestration/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "die-orchestration"
version = "0.1.0"
description = "DIE Dagster orchestration (internal, not published)"
requires-python = ">=3.10"
requires-python = ">=3.14"
dependencies = [
"dagster>=1.8",
"dagster-cloud",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "New Mexico Water Data Integration Engine"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [{ name = "Jake Ross" }]
requires-python = ">=3.10"
requires-python = ">=3.14"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
Expand Down
Loading