Skip to content

Commit

Permalink
chore: Update supported Pythons, drop 3.9
Browse files Browse the repository at this point in the history
Drop support for Python 3.9 on April 5, 2024 following NEP 29
https://numpy.org/neps/nep-0029-deprecation_policy.html

Test against Python 3.12 in CI.
  • Loading branch information
riddell-stan committed Dec 14, 2023
1 parent 6b25386 commit f3acfc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@ jobs:
strategy:
matrix:
include:
- {runs-on: ubuntu-20.04, python-version: "3.8"}
- {runs-on: ubuntu-20.04, python-version: "3.9"}
- {runs-on: ubuntu-22.04, python-version: "3.10"}
- {runs-on: ubuntu-22.04, python-version: "3.11"}
- {runs-on: macos-11, python-version: "3.8"}
- {runs-on: macos-11, python-version: "3.9"}
- {runs-on: ubuntu-22.04, python-version: "3.12"}
- {runs-on: macos-11, python-version: "3.10"}
- {runs-on: macos-11, python-version: "3.11"}
- {runs-on: macos-11, python-version: "3.12"}
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.10"
aiohttp = "^3.6"
httpstan = "~4.11"
pysimdjson = "^5.0.2"
Expand Down

0 comments on commit f3acfc9

Please sign in to comment.