From 3947c47d5954f85516cb0cb98353f549a6b7693f Mon Sep 17 00:00:00 2001 From: "A. Riddell" Date: Tue, 6 Feb 2024 21:36:34 -0500 Subject: [PATCH] feat: Use Stan 2.34.1 httpstan now at 4.12.0 (Stan 2.34.1). --- .github/workflows/main.yml | 2 -- pyproject.toml | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 47fd113..e8186b8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,11 +10,9 @@ 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: macos-11, python-version: "3.10"} - {runs-on: macos-11, python-version: "3.11"} diff --git a/pyproject.toml b/pyproject.toml index 4ffb722..bc8ccf3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pystan" -version = "3.8.0" +version = "3.9.0" description = "Python interface to Stan, a package for Bayesian inference" authors = [ "Allen Riddell ", @@ -22,9 +22,9 @@ classifiers = [ ] [tool.poetry.dependencies] -python = "^3.8" +python = "^3.9" aiohttp = "^3.6" -httpstan = "~4.11" +httpstan = "~4.12" pysimdjson = "^5.0.2" numpy = "^1.19" clikit = "^0.6"