Skip to content

Commit 483d8e2

Browse files
committed
py3.12
1 parent 43ad8e8 commit 483d8e2

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

.cruft.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "https://github.com/ecmwf-projects/cookiecutter-conda-package",
3-
"commit": "d7e6283cabfb764abba134ade577294ebb4af217",
3+
"commit": "d8e38d412bfd81121857042e6b2b755b0bbac1c5",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -12,7 +12,8 @@
1212
"mypy_strict": "True",
1313
"integration_tests": "False",
1414
"pypi": "false",
15-
"_template": "https://github.com/ecmwf-projects/cookiecutter-conda-package"
15+
"_template": "https://github.com/ecmwf-projects/cookiecutter-conda-package",
16+
"_commit": "d8e38d412bfd81121857042e6b2b755b0bbac1c5"
1617
}
1718
},
1819
"directory": null

.github/workflows/on-push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
runs-on: ubuntu-latest
5656
strategy:
5757
matrix:
58-
python-version: ['3.11', '3.13']
58+
python-version: ['3.11', '3.12']
5959

6060
steps:
6161
- uses: actions/checkout@v5
@@ -103,7 +103,7 @@ jobs:
103103
cache-environment-key: environment-${{ steps.date.outputs.date }}
104104
cache-downloads-key: downloads-${{ steps.date.outputs.date }}
105105
create-args: >-
106-
python=3.11
106+
python=3.12
107107
- name: Install package
108108
run: |
109109
python -m pip install --no-deps -e .
@@ -132,7 +132,7 @@ jobs:
132132
cache-environment-key: environment-${{ steps.date.outputs.date }}
133133
cache-downloads-key: downloads-${{ steps.date.outputs.date }}
134134
create-args: >-
135-
python=3.11
135+
python=3.12
136136
- name: Install package
137137
run: |
138138
python -m pip install --no-deps -e .
@@ -149,7 +149,7 @@ jobs:
149149
strategy:
150150
matrix:
151151
include:
152-
- python-version: '3.11'
152+
- python-version: '3.12'
153153
extra: -integration
154154

155155
steps:
@@ -191,7 +191,7 @@ jobs:
191191
- uses: actions/checkout@v5
192192
- uses: actions/setup-python@v5
193193
with:
194-
python-version: '3.11'
194+
python-version: '3.12'
195195
- name: Install package
196196
run: |
197197
python -m pip install --upgrade pip

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY . /src/cads-processing-api-service
44

55
WORKDIR /src/cads-processing-api-service
66

7-
RUN conda install -c conda-forge make gcc python=3.10 \
7+
RUN conda install -c conda-forge make gcc python=3.12 \
88
&& make conda-env-update CONDAFLAGS="-n base"
99

1010
RUN pip install --no-deps -e .

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ CADS Processing API service
1111

1212
## Workflow for developers/contributors
1313

14-
For best experience create a new conda environment (e.g. DEVELOP) with Python 3.11:
14+
For best experience create a new conda environment (e.g. DEVELOP) with Python 3.12:
1515

1616
```
17-
conda create -n DEVELOP -c conda-forge python=3.11
17+
conda create -n DEVELOP -c conda-forge python=3.12
1818
conda activate DEVELOP
1919
```
2020

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ classifiers = [
1111
"Programming Language :: Python",
1212
"Programming Language :: Python :: 3",
1313
"Programming Language :: Python :: 3.11",
14+
"Programming Language :: Python :: 3.12",
1415
"Topic :: Scientific/Engineering"
1516
]
1617
dependencies = [

0 commit comments

Comments
 (0)