Skip to content

Commit f2a2563

Browse files
committed
Merge remote-tracking branch 'origin/python-3.13' into poetry_to_uv
2 parents ad725be + 3c005df commit f2a2563

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: 6 additions & 5 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 }}

noxfile.py

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

1313

1414
package = "mdio"
15-
python_versions = ["3.12", "3.11", "3.10"]
16-
nox.needs_version = ">= 2022.1.7"
15+
python_versions = ["3.13", "3.12", "3.11", "3.10"]
16+
nox.needs_version = ">= 2024.10.9"
1717
nox.options.sessions = (
1818
"pre-commit",
1919
"safety",

pyproject.toml

Lines changed: 3 additions & 3 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 = "Apache-2.0"
99
keywords = [
@@ -22,8 +22,8 @@ dependencies = [
2222
"tqdm (>=4.67.0,<5.0.0)",
2323
"psutil (>=6.1.0,<7.0.0)",
2424
"fsspec (>=2024.10.0)",
25-
"segy (>=0.3.1,<0.5.0)",
26-
"rich (>=13.9.4,<14.0.0)",
25+
"segy (>=0.4.0,<1.0.0)",
26+
"rich (>=13.9.4,<14.0.0)"
2727
]
2828

2929
[project.optional-dependencies]

0 commit comments

Comments
 (0)