Skip to content

Commit fad8a25

Browse files
juanitorduztwiecki
authored andcommitted
Drop python 3.9 support (#615)
* drop python 3.9 * try python 3.12 * undo try python 3.12
1 parent d5141ea commit fad8a25

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
config: [ {python-version: "3.9", oldest-pymc: false}, {python-version: "3.11", oldest-pymc: true}]
17+
config: [ {python-version: "3.10", oldest-pymc: false}, {python-version: "3.11", oldest-pymc: true}]
1818
steps:
1919
- uses: actions/checkout@v3
2020
- name: Set up Python

.github/workflows/pypi.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@v4
1919
with:
20-
python-version: 3.9
20+
python-version: "3.10"
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@v4
6464
with:
65-
python-version: 3.9
65+
python-version: "3.10"
6666
- name: Test pip install from test.pypi
6767
run: |
6868
python -m venv venv-test-pypi

pyproject.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = ["setuptools>=61.0"]
55
[project]
66
name = "pymc-marketing"
77
description = "Marketing Statistical Models in PyMC"
8-
requires-python = ">=3.9"
8+
requires-python = ">=3.10"
99
readme = "README.md"
1010
license = { file = "LICENSE" }
1111
dynamic = ["version"]
@@ -38,11 +38,7 @@ docs = [
3838
"sphinx-design",
3939
]
4040
lint = ["mypy", "pandas-stubs", "pre-commit>=2.19.0", "ruff>=0.1.4"]
41-
test = [
42-
"lifetimes==0.11.3",
43-
"pytest==7.0.1",
44-
"pytest-cov==3.0.0",
45-
]
41+
test = ["lifetimes==0.11.3", "pytest==7.0.1", "pytest-cov==3.0.0"]
4642

4743
[tool.setuptools]
4844
packages = [

0 commit comments

Comments
 (0)