-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #275 from lnccbrown/fix-hddm-wfpt
Set hddm-wfpt as required, separate dependency
- Loading branch information
Showing
9 changed files
with
39 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,3 +51,6 @@ jobs: | |
|
||
- name: Run tests | ||
run: poetry run pytest | ||
|
||
- name: build docs | ||
run: poetry run mkdocs build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,3 +70,5 @@ site/ | |
|
||
# folders in the repository | ||
/notebooks | ||
|
||
*.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[tool.poetry] | ||
name = "HSSM" | ||
version = "0.1.3" | ||
description = "" | ||
version = "0.1.5" | ||
description = "Bayesian inference for hierarchical sequential sampling models." | ||
authors = [ | ||
"Aisulu Omar <[email protected]>", | ||
"Paul Xu <[email protected]>", | ||
"Alexander Fengler <[email protected]>", | ||
"Paul Xu <[email protected]>", | ||
"Aisulu Omar <[email protected]>", | ||
"Michael Frank <[email protected]>", | ||
] | ||
readme = "README.md" | ||
|
@@ -16,8 +16,8 @@ keywords = ["HSSM", "sequential sampling models", "bayesian", "bayes", "mcmc"] | |
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9,<3.12" | ||
pymc = ">=5.6.0,<5.7.0" | ||
scipy = "1.10.1" | ||
pymc = "^5.6.0" | ||
arviz = "^0.14.0" | ||
numpy = "^1.23.4" | ||
onnx = "^1.12.0" | ||
|
@@ -28,11 +28,11 @@ huggingface-hub = "^0.15.1" | |
onnxruntime = "^1.15.0" | ||
bambi = "^0.12.0" | ||
numpyro = "^0.12.1" | ||
hddm-wfpt = {git = "https://github.com/brown-ccv/hddm-wfpt.git"} | ||
hddm-wfpt = "^0.1.1" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.3.1" | ||
black = {extras = ["jupyter"], version = "^23.7.0"} | ||
black = { extras = ["jupyter"], version = "^23.7.0" } | ||
mypy = "^1.4.1" | ||
pre-commit = "^2.20.0" | ||
jupyterlab = "^4.0.2" | ||
|
@@ -162,7 +162,14 @@ ignore = [ | |
"TID252", | ||
] | ||
|
||
exclude = [".github", "docs", "notebook", "tests"] | ||
exclude = [ | ||
".github", | ||
"docs", | ||
"notebook", | ||
"tests", | ||
"src/hssm/likelihoods/hddm_wfpt/cdfdif_wrapper.c", | ||
"src/hssm/likelihoods/hddm_wfpt/wfpt.cpp", | ||
] | ||
|
||
[tool.ruff.pydocstyle] | ||
convention = "numpy" | ||
|
@@ -171,5 +178,5 @@ convention = "numpy" | |
ignore_missing_imports = true | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.4.0"] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters