File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- python-version : ["3.8 ", "3.9", "3.10 "]
14
+ python-version : ["3.10 ", "3.11 "]
15
15
16
16
steps :
17
17
- uses : actions/checkout@v4
26
26
runs-on : ubuntu-latest
27
27
strategy :
28
28
matrix :
29
- python-version : ["3.8 ", "3.9", "3.10 "]
29
+ python-version : ["3.10 ", "3.11 "]
30
30
31
31
steps :
32
32
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 17
17
fetch-depth : 0
18
18
- uses : actions/setup-python@v5
19
19
with :
20
- python-version : 3.8
20
+ python-version : 3.11
21
21
- name : Build the sdist and the wheel
22
22
run : |
23
23
pip install build
62
62
repository_url : https://test.pypi.org/legacy/
63
63
- uses : actions/setup-python@v5
64
64
with :
65
- python-version : 3.8
65
+ python-version : 3.11
66
66
- name : Test pip install from test.pypi
67
67
run : |
68
68
# Give time to test.pypi to update its index. If we don't wait,
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ For more instructions see the [Pull request checklist](#pull-request-checklist)
47
47
48
48
Always use a feature branch. It' s good practice to never routinely work on the `main` branch of any repository.
49
49
50
- 1. Create a new environment using Python >=3.8 , for example 3.11
50
+ 1. Create a new environment using Python >=3.10 , for example 3.11
51
51
52
52
```bash
53
53
conda create --name CausalPy python=3.11
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ description = "Causal inference for quasi-experiments in Python"
18
18
readme = " README.md"
19
19
license = { file = " LICENSE" }
20
20
authors = [{
name =
" Ben Vincent" ,
email =
" [email protected] " }]
21
- requires-python = " >=3.8 "
21
+ requires-python = " >=3.10 "
22
22
23
23
# This field lists other packages that your project depends on to run.
24
24
# Any package you put here will be installed by pip when your project is
@@ -115,5 +115,5 @@ badge-format = "svg"
115
115
116
116
[tool .ruff .lint ]
117
117
extend-select = [
118
- " I" , # isort
118
+ " I" , # isort
119
119
]
You can’t perform that action at this time.
0 commit comments