File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 21
21
strategy :
22
22
matrix :
23
23
runs-on : ["ubuntu-latest"] # can add windows-latest, macos-latest
24
- python-version : ["3.10", "3. 11", "3.12"]
24
+ python-version : ["3.11", "3.12"]
25
25
include :
26
26
# Include one that runs in the dev environment
27
27
- runs-on : " ubuntu-latest"
Original file line number Diff line number Diff line change @@ -7,16 +7,24 @@ name = "sm_bluesky"
7
7
classifiers = [
8
8
" Development Status :: 3 - Alpha" ,
9
9
" License :: OSI Approved :: Apache Software License" ,
10
- " Programming Language :: Python :: 3.10" ,
11
10
" Programming Language :: Python :: 3.11" ,
12
11
" Programming Language :: Python :: 3.12" ,
13
12
]
14
13
description = " Bluesky code for Diamond's surface and magnetic materials beamline."
15
- dependencies = [] # Add project dependencies here, e.g. ["click", "numpy"]
14
+ dependencies = [
15
+ #
16
+ # If a constraint is not set here or if the dependency is pinned to a hash
17
+ # it will be auto-pinned to the latest release version by the pre-release workflow
18
+ #
19
+ " bluesky" ,
20
+ " dls-dodal @ git+https://github.com/DiamondLightSource/dodal.git" ,
21
+ " ophyd-async >= 0.9.0a2" ,
22
+ " scanspec"
23
+ ]
16
24
dynamic = [" version" ]
17
25
license.file = " LICENSE"
18
26
readme = " README.md"
19
- requires-python = " >=3.10 "
27
+ requires-python = " >=3.11 "
20
28
21
29
[project .optional-dependencies ]
22
30
dev = [
You can’t perform that action at this time.
0 commit comments