File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 19
19
strategy :
20
20
matrix :
21
21
runs-on : ["ubuntu-latest"] # can add windows-latest, macos-latest
22
- python-version : ["3.11", "3.12"]
22
+ python-version : ["3.11", "3.12", "3.13" ]
23
23
include :
24
24
# Include one that runs in the dev environment
25
25
- runs-on : " ubuntu-latest"
Original file line number Diff line number Diff line change 1
1
# The devcontainer should use the developer target and run as root with podman
2
2
# or docker with user namespaces.
3
- ARG PYTHON_VERSION=3.12 @sha256:23e642ca5600c3c6925490bf500914abe411d944b237ac0c6c87af2cd091b8fd
3
+ ARG PYTHON_VERSION=3.13 @sha256:18634e45b29c0dd1a9a3a3d0781f9f8a221fe32ee7a853db01e9120c710ef535
4
4
FROM python:${PYTHON_VERSION} AS developer
5
5
6
6
# Add any system dependencies for the developer/build environment here
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ classifiers = [
9
9
" License :: OSI Approved :: Apache Software License" ,
10
10
" Programming Language :: Python :: 3.11" ,
11
11
" Programming Language :: Python :: 3.12" ,
12
+ " Programming Language :: Python :: 3.13" ,
12
13
]
13
14
description = " Bluesky code for Diamond's surface and magnetic materials beamline."
14
15
dependencies = [
@@ -17,8 +18,8 @@ dependencies = [
17
18
# it will be auto-pinned to the latest release version by the pre-release workflow
18
19
#
19
20
" bluesky" ,
20
- " dls-dodal" ,
21
- " ophyd-async[sim] >= 0.11 " ,
21
+ " dls-dodal>=1.56.0 " ,
22
+ " ophyd-async[sim]" ,
22
23
" scanspec" ,
23
24
]
24
25
dynamic = [" version" ]
You can’t perform that action at this time.
0 commit comments