Skip to content

Commit a3f9b30

Browse files
committed
Merge remote-tracking branch 'origin/python-3.13' into python-3.13_uv
2 parents b22a0ab + 3c005df commit a3f9b30

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PYTHON_VERSION=3.12
1+
ARG PYTHON_VERSION=3.13
22
ARG LINUX_DISTRO=bookworm
33

44
FROM mcr.microsoft.com/devcontainers/python:1-${PYTHON_VERSION}-${LINUX_DISTRO}

.github/workflows/tests.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,22 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
include:
15-
- { python: "3.12", os: "ubuntu-latest", session: "pre-commit" }
16-
- { python: "3.12", os: "ubuntu-latest", session: "safety" }
15+
- { python: "3.13", os: "ubuntu-latest", session: "pre-commit" }
16+
- { python: "3.13", os: "ubuntu-latest", session: "safety" }
1717
# - { python: "3.12", os: "ubuntu-latest", session: "mypy" }
1818
# - { python: "3.11", os: "ubuntu-latest", session: "mypy" }
1919
# - { python: "3.10", os: "ubuntu-latest", session: "mypy" }
20+
- { python: "3.13", os: "ubuntu-latest", session: "tests" }
2021
- { python: "3.12", os: "ubuntu-latest", session: "tests" }
2122
- { python: "3.11", os: "ubuntu-latest", session: "tests" }
2223
- { python: "3.10", os: "ubuntu-latest", session: "tests" }
23-
- { python: "3.12", os: "windows-latest", session: "tests" }
24-
- { python: "3.12", os: "macos-latest", session: "tests" }
24+
- { python: "3.13", os: "windows-latest", session: "tests" }
25+
- { python: "3.13", os: "macos-latest", session: "tests" }
2526
# - { python: "3.12", os: "ubuntu-latest", session: "typeguard" }
2627
# - { python: "3.11", os: "ubuntu-latest", session: "typeguard" }
2728
# - { python: "3.10", os: "ubuntu-latest", session: "typeguard" }
2829
# - { python: "3.10", os: "ubuntu-latest", session: "xdoctest" }
29-
- { python: "3.12", os: "ubuntu-latest", session: "docs-build" }
30+
- { python: "3.13", os: "ubuntu-latest", session: "docs-build" }
3031

3132
env:
3233
NOXSESSION: ${{ matrix.session }}
@@ -107,7 +108,7 @@ jobs:
107108
- name: Install the pinned version of uv
108109
uses: astral-sh/setup-uv@v5
109110
with:
110-
python-version: 3.12
111+
python-version: 3.13
111112
pyproject-file: "${{ github.workspace }}/pyproject.toml"
112113

113114
- name: Install Nox

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515

1616
package = "mdio"
17-
python_versions = ["3.12", "3.11", "3.10"]
18-
nox.needs_version = ">= 2022.1.7"
17+
python_versions = ["3.13", "3.12", "3.11", "3.10"]
18+
nox.needs_version = ">= 2024.10.9"
1919
nox.options.sessions = (
2020
"pre-commit",
2121
"safety",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "multidimio"
33
version = "0.8.5"
44
description = "Cloud-native, scalable, and user-friendly multi dimensional energy data!"
55
authors = [{ name = "Altay Sansal", email = "[email protected]" }]
6-
requires-python = ">=3.10,<3.13"
6+
requires-python = ">=3.10,<3.14"
77
readme = "README.md"
88
license = { "text" = "Apache-2.0" }
99
keywords = [
@@ -30,7 +30,7 @@ dependencies = [
3030
"tqdm (>=4.67.0,<5.0.0)",
3131
"psutil (>=6.1.0,<7.0.0)",
3232
"fsspec (>=2024.10.0)",
33-
"segy (>=0.3.1,<0.5.0)",
33+
"segy (>=0.4.0,<1.0.0)",
3434
"rich (>=13.9.4,<14.0.0)",
3535
]
3636

0 commit comments

Comments
 (0)