File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: 2
2
2
jobs :
3
3
build_docs :
4
4
docker :
5
- - image : circleci /python:3.8.1-buster
5
+ - image : cimg /python:3.10
6
6
steps :
7
7
- checkout
8
8
- run :
32
32
keys :
33
33
- pip-cache
34
34
35
+ # Install Xvfb and related dependencies
36
+ - run :
37
+ name : Install Xvfb and dependencies
38
+ command : |
39
+ sudo apt-get update
40
+ sudo apt-get install -y xvfb
41
+
35
42
- run :
36
43
name : Spin up Xvfb
37
44
command : |
Original file line number Diff line number Diff line change @@ -22,6 +22,16 @@ dependencies = [
22
22
]
23
23
dynamic = [" version" ]
24
24
25
+ requires-python = " >=3.9"
26
+
27
+ classifiers = [
28
+ " Programming Language :: Python :: 3 :: Only" ,
29
+ " Programming Language :: Python :: 3.9" ,
30
+ " Programming Language :: Python :: 3.10" ,
31
+ " Programming Language :: Python :: 3.11" ,
32
+ " Programming Language :: Python :: 3.12" ,
33
+ " Programming Language :: Python :: 3.13" ,
34
+ ]
25
35
26
36
[tool .setuptools .dynamic ]
27
37
version = {attr = " skglm.__version__" }
You can’t perform that action at this time.
0 commit comments