Sermet Pekin

Results 14 issues of Sermet Pekin

- adding badges such as workflow test result, license MIT, supported python versions and download stats. - **I would like to note that** ` readme.md` file in this PR has...

- fixed typo for poetry install command removed `,test` from this command ```bash poetry install --with dev,test ``` and new version is this ```bash poetry install --with dev ```

- fixed mutable default argument of Client class initializer ```python class Client: def __init__(self, provider_configs: dict = None): ... ```

- added `load_dotenv` function to load `.env` file content to users' current environment

- modified .gitignore file to allow users to try their examples locally. Added these two regex ```bash ignore*.py ignore_local*.py ```

Currently on github file statistics show this project has 90% jupyter notebook. This PR will add .gitattributes file which will correct those statistics as 100% python. ```plaintext Jupyter Notebook 90.3%...

- adds uv support created a pyproject.toml file - adds __init__.py file to test folder - adds a few lines to .gitignore not to pollute this beautiful repository with environment...

Introduced a new global option, brms_cache_folder, allowing users to specify a default folder for saving and loading cached brmsfit objects. Updated get_cache_folder() to read from getOption("brms_cache_folder") whenever the supplied file...

I encountered a _pickle.PicklingError when running the test suite for cmdstanpy. The error occurs in the test_serialization test within test/test_generate_quantities.py. The error message indicates that Python cannot pickle the object...

- Updates Readme file to show creation of ABC_stan variable from Stan model text.