Skip to content

Commit 8d95d18

Browse files
committed
Drop python 3.11 support
1 parent 4134a0a commit 8d95d18

6 files changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/bundle_with_dakota_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
python-version: [ '3.11', '3.12', '3.13', '3.14' ]
31+
python-version: [ '3.12', '3.13', '3.14' ]
3232
os: [ ubuntu-24.04 ]
3333
runs-on: ${{ matrix.os }}
3434
env:

.github/workflows/bundle_with_dakota_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: true
2828
matrix:
2929
# https://github.com/actions/runner-images?tab=readme-ov-file#available-images
30-
python-version: [ '3.11', '3.12', '3.13', '3.14' ]
30+
python-version: [ '3.12', '3.13', '3.14' ]
3131
os: [ 'macos-15' ]
3232

3333
runs-on: ${{ matrix.os }}
@@ -303,7 +303,7 @@ jobs:
303303
strategy:
304304
fail-fast: false
305305
matrix:
306-
python-version: [ '3.11', '3.12', '3.13', '3.14' ]
306+
python-version: [ '3.12', '3.13', '3.14' ]
307307
os: [ 'macos-15' ]
308308

309309
runs-on: ${{ matrix.os }}

dakota_manylinux_install_files/build_deps_docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -euo pipefail
66
git config --global --add safe.directory /github/workspace
77

88
if [ -z "${1:-}" ]; then
9-
echo "Please provide a Python version as an argument (e.g., 3.10)"
9+
echo "Please provide a Python version as an argument (e.g., 3.12)"
1010
exit 1
1111
fi
1212

dakota_manylinux_install_files/build_deps_gha.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -euo pipefail
66
git config --global --add safe.directory /github/workspace
77

88
if [ -z "${1:-}" ]; then
9-
echo "Please provide a Python version as an argument (e.g., 3.10)"
9+
echo "Please provide a Python version as an argument (e.g., 3.12)"
1010
exit 1
1111
fi
1212

dakota_manylinux_install_files/build_wheels_gha.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -eu
66
git config --global --add safe.directory /github/workspace
77

88
if [ -z "${1:-}" ]; then
9-
echo "Please provide a Python version as an argument (e.g., 3.10)"
9+
echo "Please provide a Python version as an argument (e.g., 3.12)"
1010
exit 1
1111
fi
1212

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
name="carolina"
11-
requires-python = ">=3.11"
11+
requires-python = ">=3.12"
1212
description = "Python wrapper around Dakota"
1313
authors = [
1414
{ name = "Equinor ASA", email = "fg_sib-scout@equinor.com" },
@@ -22,7 +22,6 @@ classifiers = ['Intended Audience :: Science/Research',
2222
'Natural Language :: English',
2323
'Operating System :: OS Independent',
2424
'Programming Language :: Python',
25-
'Programming Language :: Python :: 3.11',
2625
'Programming Language :: Python :: 3.12',
2726
'Programming Language :: Python :: 3.13',
2827
'Programming Language :: Python :: 3.14',

0 commit comments

Comments
 (0)