Skip to content

Commit 13b8838

Browse files
authored
Merge pull request #65 from ecmwf-projects/py3.11
python 3.11
2 parents b4ee2ad + 6a5d86d commit 13b8838

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.cruft.json

+1-1
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": "6b3d4f841901cf814dbc4fe113a447794b548756",
3+
"commit": "c6665306749b5dd3b4ec0fdcf1cb31d18fe23511",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {

.github/workflows/on-push.yml

+4-4
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.10', '3.11']
58+
python-version: ['3.11']
5959

6060
steps:
6161
- uses: actions/checkout@v4
@@ -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.10
106+
python=3.11
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.10
135+
python=3.11
136136
- name: Install package
137137
run: |
138138
python -m pip install --no-deps -e .
@@ -193,7 +193,7 @@ jobs:
193193
- uses: actions/checkout@v4
194194
- uses: actions/setup-python@v4
195195
with:
196-
python-version: '3.10'
196+
python-version: '3.11'
197197
- name: Install package
198198
run: |
199199
python -m pip install --upgrade pip

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR /src/ogc-api-processes-fastapi
44

55
COPY environment.yml /src/ogc-api-processes-fastapi/
66

7-
RUN conda install -c conda-forge gcc python=3.10 \
7+
RUN conda install -c conda-forge gcc python=3.11 \
88
&& conda env update -n base -f environment.yml
99

1010
COPY . /src/ogc-api-processes-fastapi

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ OGC API Processes service based on FastAPI
1111

1212
## Workflow for developers/contributors
1313

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

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

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ classifiers = [
99
"Operating System :: OS Independent",
1010
"Programming Language :: Python",
1111
"Programming Language :: Python :: 3",
12-
"Programming Language :: Python :: 3.10",
1312
"Programming Language :: Python :: 3.11",
1413
"Topic :: Scientific/Engineering"
1514
]

0 commit comments

Comments
 (0)