Skip to content

Commit 88c65eb

Browse files
committed
BLD: Deprecate Python 3.9, 3.10, add 3.13
1 parent 7c87d71 commit 88c65eb

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
style:
2323
strategy:
2424
matrix:
25-
python-version: ["3.9", "3.12"]
25+
python-version: ["3.11", "3.13"]
2626
runs-on: ubuntu-latest
2727

2828
steps:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
testing:
2323
strategy:
2424
matrix:
25-
python-version: ["3.9", "3.10", "3.11", "3.12"]
25+
python-version: ["3.11", "3.12", "3.13"]
2626
os: [ubuntu-latest]
2727
include:
2828
- os: macos-latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# grid3d-maps
22

33
[![tests](https://github.com/equinor/grid3d-maps/actions/workflows/test.yml/badge.svg)](https://github.com/equinor/grid3d-maps/actions/workflows/test.yml)
4-
![Python Version](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11-blue.svg)
4+
![Python Version](https://img.shields.io/badge/python-3.11%20|%203.12%20|%203.13-blue.svg)
55
[![License: GPL v3](https://img.shields.io/github/license/equinor/grid3d-maps)](https://www.gnu.org/licenses/gpl-3.0)
66
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
77

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ write_to = "src/grid3d_maps/version.py"
1212
name = "grid3d_maps"
1313
description = "Make HC thickness, avg maps, etc directly from 3D props"
1414
readme = "README.md"
15-
requires-python = ">=3.9"
15+
requires-python = ">=3.11"
1616
license = { file = "LICENSE" }
1717
authors = [
1818
{ name = "Equinor", email = "fg_fmu-atlas@equinor.com" },
@@ -36,10 +36,9 @@ classifiers = [
3636
"Operating System :: POSIX :: Linux",
3737
"Operating System :: Microsoft :: Windows",
3838
"Operating System :: MacOS",
39-
"Programming Language :: Python :: 3.9",
40-
"Programming Language :: Python :: 3.10",
4139
"Programming Language :: Python :: 3.11",
4240
"Programming Language :: Python :: 3.12",
41+
"Programming Language :: Python :: 3.13",
4342
"Natural Language :: English",
4443
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
4544
]

0 commit comments

Comments
 (0)