Skip to content

Commit

Permalink
chore: Update supported Pythons, drop 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
riddell-stan committed Dec 14, 2023
1 parent 54df4be commit 7465a15
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ["3.8", "3.9"]
python-version: ["3.9", "3.10", "3.11"]
include:
- os: ubuntu-20.04
python-version: "3.10"
- os: macos-11.0
python-version: "3.10"
- os: ubuntu-20.04
python-version: "3.11"
- os: ubuntu-22.04
python-version: "3.11"
- os: macos-11.0
python-version: "3.11"
- os: macos-11.0
python-version: "3.12"
- os: ubuntu-22.04
python-version: "3.12"
steps:
- name: Check out repository
uses: actions/checkout@v2
Expand All @@ -31,7 +29,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install poetry
run: pip install "poetry~=1.2"
run: pip install "poetry~=1.7.1"

- name: Build libraries used by Stan
run: make -j2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ include = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
setuptools = ">=48.0"
aiohttp = "^3.7"
appdirs = "^1.4"
Expand Down

0 comments on commit 7465a15

Please sign in to comment.