Skip to content

Commit ee370e4

Browse files
committed
Working to get CI to run with only python v3.11 and not v3.12
- Updates to come later to work in other python (and dependency) versions
1 parent c61e9c8 commit ee370e4

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/CI_FAModel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
26-
python-version: ["3.11", "3.12"]
26+
python-version: ["3.11"]
2727

2828

2929
steps:
@@ -39,7 +39,7 @@ jobs:
3939
auto-update-conda: true
4040
python-version: ${{ matrix.python-version }}
4141
environment-file: famodel-env.yaml
42-
activate-environment: test
42+
activate-environment: famodel-env
4343
auto-activate-base: false
4444
channels: conda-forge
4545
channel-priority: true

famodel-env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ channels:
33
- conda-forge
44
- defaults
55
dependencies:
6-
- python>=3.8
6+
- python>=3.8,<3.12
77
- numpy>=1.20.0
88
- matplotlib>=3.5.0
99
- scipy==1.11.2

pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "1.0.0"
88
description = "A floating array modeling library"
99
license = {file = "LICENSE"}
1010
readme = "README.md"
11-
requires-python = ">=3.8"
11+
requires-python = ">=3.8,<3.12"
1212
classifiers = [
1313
"Development Status :: 4 - Beta",
1414
"Intended Audience :: Science/Research",
@@ -19,9 +19,6 @@ classifiers = [
1919
"Programming Language :: Python :: 3.9",
2020
"Programming Language :: Python :: 3.10",
2121
"Programming Language :: Python :: 3.11",
22-
"Programming Language :: Python :: 3.12",
23-
"Programming Language :: Python :: 3.13",
24-
"Programming Language :: Python :: 3.14",
2522
"Topic :: Scientific/Engineering",
2623
]
2724
keywords = ["offshore wind", "floating platforms", "mooring systems", "array design"]

0 commit comments

Comments
 (0)