Skip to content

Commit a64fc0a

Browse files
authored
Merge pull request #313 from pymc-labs/drop_py39
Drop support for Python 3.8 and 3.9, add 3.11
2 parents 00dc744 + 1d5a72d commit a64fc0a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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

.github/workflows/release.yml

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

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

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)