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 1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
14- python-version : ["3.8 ", "3.9", "3.10 "]
14+ python-version : ["3.10 ", "3.11 "]
1515
1616 steps :
1717 - uses : actions/checkout@v4
2626 runs-on : ubuntu-latest
2727 strategy :
2828 matrix :
29- python-version : ["3.8 ", "3.9", "3.10 "]
29+ python-version : ["3.10 ", "3.11 "]
3030
3131 steps :
3232 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1717 fetch-depth : 0
1818 - uses : actions/setup-python@v5
1919 with :
20- python-version : 3.8
20+ python-version : 3.11
2121 - name : Build the sdist and the wheel
2222 run : |
2323 pip install build
6262 repository_url : https://test.pypi.org/legacy/
6363 - uses : actions/setup-python@v5
6464 with :
65- python-version : 3.8
65+ python-version : 3.11
6666 - name : Test pip install from test.pypi
6767 run : |
6868 # 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)
4747
4848 Always use a feature branch. It' s good practice to never routinely work on the `main` branch of any repository.
4949
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
5151
5252 ```bash
5353 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"
1818readme = " README.md"
1919license = { file = " LICENSE" }
2020authors = [{ name = " Ben Vincent" , email = " ben.vincent@pymc-labs.com" }]
21- requires-python = " >=3.8 "
21+ requires-python = " >=3.10 "
2222
2323# This field lists other packages that your project depends on to run.
2424# Any package you put here will be installed by pip when your project is
@@ -115,5 +115,5 @@ badge-format = "svg"
115115
116116[tool .ruff .lint ]
117117extend-select = [
118- " I" , # isort
118+ " I" , # isort
119119]
You can’t perform that action at this time.
0 commit comments