Skip to content

Commit afdba2a

Browse files
jolarsmathurinm
andauthored
MNT add python version requirement (#289)
Co-authored-by: mathurinm <[email protected]>
1 parent 525a7c2 commit afdba2a

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.circleci/config.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
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:
@@ -32,6 +32,13 @@ jobs:
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: |

pyproject.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@ dependencies = [
2222
]
2323
dynamic = ["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]
2737
version = {attr = "skglm.__version__"}

0 commit comments

Comments
 (0)