File tree Expand file tree Collapse file tree 3 files changed +159
-8
lines changed Expand file tree Collapse file tree 3 files changed +159
-8
lines changed Original file line number Diff line number Diff line change @@ -14,17 +14,22 @@ jobs:
14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- python-version : ["3.11"]
17
+ python-version :
18
+ - " 3.9"
19
+ - " 3.10"
20
+ - " 3.11"
21
+ - " 3.12"
22
+ - " 3.13"
18
23
19
24
steps :
20
25
- uses : actions/checkout@v4
21
26
- name : Install uv
22
27
uses : astral-sh/setup-uv@v3
23
28
with :
24
- # Install a specific version of uv.
25
29
version : " 0.4.15"
26
- - name : Set up Python
27
- run : uv python install
30
+
31
+ - name : Set up Python ${{ matrix.python-version }}
32
+ run : uv python install ${{ matrix.python-version }}
28
33
29
34
- name : Install the project
30
35
run : uv sync --all-extras --dev
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " hakeem"
3
3
version = " 1.0.0"
4
- requires-python = " >= 3.12 "
4
+ requires-python = " >= 3.9 "
5
5
readme = " README.md"
6
6
dependencies = [
7
7
" pandas>=2.2.3" ,
@@ -20,7 +20,7 @@ packages = [
20
20
]
21
21
22
22
[tool .poetry .dependencies ]
23
- python = ' ^3.12 '
23
+ python = ' ^3.9 '
24
24
pandas = ' ^2.2.3'
25
25
26
26
You can’t perform that action at this time.
0 commit comments