Skip to content

Commit 3b594df

Browse files
committed
drop 3.8 and 3.9, add 3.11
1 parent 00dc744 commit 3b594df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
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
@@ -26,7 +26,7 @@ jobs:
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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ description = "Causal inference for quasi-experiments in Python"
1818
readme = "README.md"
1919
license = { file = "LICENSE" }
2020
authors = [{ name = "Ben Vincent", email = "[email protected]" }]
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]
117117
extend-select = [
118-
"I", # isort
118+
"I", # isort
119119
]

0 commit comments

Comments
 (0)