Skip to content

Commit

Permalink
chore: Drop Python 3.8 from CI, update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
riddell-stan committed Jan 25, 2024
1 parent 54df4be commit ebfc6e4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ["3.8", "3.9"]
python-version: ["3.9", "3.10"]
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.10"
- os: macos-11.0
python-version: "3.11"
steps:
Expand All @@ -31,7 +27,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
8 changes: 4 additions & 4 deletions 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 All @@ -46,11 +46,11 @@ autoflake = "^1.4"
black = "22.3.0"
isort = "^5.9"
mypy = "0.981"
flake8 = "^3.9"
flake8 = "^7.0.0"
# documentation
# NOTE: when changing these, update docs-requirements.txt
sphinx = "^4.2"
sphinx-autoapi = "^1.8.4"
sphinx = "^7.2"
sphinx-autoapi = "^3.0.0"
sphinx-rtd-theme = "^1.0.0"
sphinxcontrib-openapi = "^0.8.1"
jsonschema = ">=4.10.0,<4.18.0" # newer versions break sphinxcontrib-openapi
Expand Down

0 comments on commit ebfc6e4

Please sign in to comment.