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/bundle_with_dakota_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.11', '3.12', '3.13', '3.14' ]
python-version: [ '3.12', '3.13', '3.14' ]
os: [ ubuntu-24.04 ]
runs-on: ${{ matrix.os }}
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundle_with_dakota_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fail-fast: true
matrix:
# https://github.com/actions/runner-images?tab=readme-ov-file#available-images
python-version: [ '3.11', '3.12', '3.13', '3.14' ]
python-version: [ '3.12', '3.13', '3.14' ]
os: [ 'macos-15' ]

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.11', '3.12', '3.13', '3.14' ]
python-version: [ '3.12', '3.13', '3.14' ]
os: [ 'macos-15' ]

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion dakota_manylinux_install_files/build_deps_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -euo pipefail
git config --global --add safe.directory /github/workspace

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

Expand Down
2 changes: 1 addition & 1 deletion dakota_manylinux_install_files/build_deps_gha.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -euo pipefail
git config --global --add safe.directory /github/workspace

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

Expand Down
2 changes: 1 addition & 1 deletion dakota_manylinux_install_files/build_wheels_gha.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -eu
git config --global --add safe.directory /github/workspace

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

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name="carolina"
requires-python = ">=3.11"
requires-python = ">=3.12"
description = "Python wrapper around Dakota"
authors = [
{ name = "Equinor ASA", email = "fg_sib-scout@equinor.com" },
Expand All @@ -22,7 +22,6 @@ classifiers = ['Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
Expand Down
Loading