Skip to content

Commit

Permalink
drop python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
juanitorduz committed Apr 5, 2024
1 parent f055f98 commit 2e07c57
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
config: [ {python-version: "3.9", oldest-pymc: false}, {python-version: "3.11", oldest-pymc: true}]
config: [ {python-version: "3.10", oldest-pymc: false}, {python-version: "3.11", oldest-pymc: true}]
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: "3.10"
- name: Build the sdist and the wheel
run: |
pip install build
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
repository-url: https://test.pypi.org/legacy/
- uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: "3.10"
- name: Test pip install from test.pypi
run: |
python -m venv venv-test-pypi
Expand Down
8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires = ["setuptools>=61.0"]
[project]
name = "pymc-marketing"
description = "Marketing Statistical Models in PyMC"
requires-python = ">=3.9"
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
Expand Down Expand Up @@ -38,11 +38,7 @@ docs = [
"sphinx-design",
]
lint = ["mypy", "pandas-stubs", "pre-commit>=2.19.0", "ruff>=0.1.4"]
test = [
"lifetimes==0.11.3",
"pytest==7.0.1",
"pytest-cov==3.0.0",
]
test = ["lifetimes==0.11.3", "pytest==7.0.1", "pytest-cov==3.0.0"]

[tool.setuptools]
packages = [
Expand Down

0 comments on commit 2e07c57

Please sign in to comment.