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
22jobs:
33 build_docs:
44 docker:
5- - image: circleci /python:3.8.1-buster
5+ - image: cimg /python:3.10
66 steps:
77 - checkout
88 - run:
3232 keys:
3333 - pip-cache
3434
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+
3542 - run:
3643 name: Spin up Xvfb
3744 command: |
Original file line number Diff line number Diff line change @@ -22,6 +22,16 @@ dependencies = [
2222]
2323dynamic = ["version"]
2424
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+ ]
2535
2636[tool.setuptools.dynamic]
2737version = {attr = "skglm.__version__"}
You can’t perform that action at this time.
0 commit comments