Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

pystan

Package Overview
Dependencies
Maintainers
2
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pystan - npm Package Compare versions

Comparing version
3.8.0
to
3.9.0
+3
-4
PKG-INFO
Metadata-Version: 2.1
Name: pystan
Version: 3.8.0
Version: 3.9.0
Summary: Python interface to Stan, a package for Bayesian inference

@@ -9,3 +9,3 @@ Home-page: https://mc-stan.org

Author-email: riddella@indiana.edu
Requires-Python: >=3.8,<4.0
Requires-Python: >=3.9,<4.0
Classifier: Intended Audience :: Science/Research

@@ -15,3 +15,2 @@ Classifier: License :: OSI Approved

Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9

@@ -23,3 +22,3 @@ Classifier: Programming Language :: Python :: 3.10

Requires-Dist: clikit (>=0.6,<0.7)
Requires-Dist: httpstan (>=4.11,<4.12)
Requires-Dist: httpstan (>=4.12,<4.13)
Requires-Dist: numpy (>=1.19,<2.0)

@@ -26,0 +25,0 @@ Requires-Dist: pysimdjson (>=5.0.2,<6.0.0)

[tool.poetry]
name = "pystan"
version = "3.8.0"
version = "3.9.0"
description = "Python interface to Stan, a package for Bayesian inference"

@@ -25,5 +25,5 @@ authors = [

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
aiohttp = "^3.6"
httpstan = "~4.11"
httpstan = "~4.12"
pysimdjson = "^5.0.2"

@@ -46,4 +46,4 @@ numpy = "^1.19"

# NOTE: when changing these, update docs-requirements.txt
sphinx = "^4.2"
sphinx-rtd-theme = "^1.0"
sphinx = "^7.2"
sphinx-rtd-theme = "^2.0"

@@ -50,0 +50,0 @@ [tool.black]

@@ -55,3 +55,3 @@ import collections

num_flat_params = sum(np.product(dims_ or 1) for dims_ in dims) # if dims == [] then it is a scalar
num_flat_params = sum(np.prod(dims_ or 1) for dims_ in dims) # if dims == [] then it is a scalar
assert num_flat_params == len(constrained_param_names)

@@ -58,0 +58,0 @@ num_samples_saved = ceil(self.num_samples / self.num_thin) + ceil(