Skip to content

Commit 56a4ca2

Browse files
committed
Merge branch 'main' of github.com:pymc-devs/pymc into fix-icar-latex
2 parents 3d85f80 + 0a33057 commit 56a4ca2

File tree

84 files changed

+6622
-762
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+6622
-762
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Publish Release Notes to Discourse
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
publish-to-discourse:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
with:
15+
persist-credentials: false
16+
17+
- name: Set up Python
18+
uses: actions/setup-python@v4
19+
with:
20+
python-version: "3.11"
21+
22+
- name: Install dependencies
23+
run: pip install requests
24+
25+
- name: Publish release to Discourse
26+
env:
27+
DISCOURSE_API_KEY: ${{ secrets.DISCOURSE_API_KEY }}
28+
DISCOURSE_USERNAME: "pymc-bot"
29+
DISCOURSE_URL: "https://discourse.pymc.io"
30+
DISCOURSE_CATEGORY: "Development"
31+
RELEASE_TAG: ${{ github.event.release.tag_name }}
32+
RELEASE_BODY: ${{ github.event.release.body }}
33+
RELEASE_URL: ${{ github.event.release.html_url }}
34+
REPO_NAME: ${{ github.repository }}
35+
run: python ./scripts/publish_release_notes_to_discourse.py

.github/workflows/tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ jobs:
6969
tests/distributions/test_shape_utils.py
7070
tests/distributions/test_mixture.py
7171
tests/test_testing.py
72+
tests/test_progress_bar.py
7273
7374
- |
7475
tests/distributions/test_continuous.py
@@ -135,6 +136,12 @@ jobs:
135136
tests/logprob/test_transforms.py
136137
tests/logprob/test_utils.py
137138
139+
- |
140+
tests/dims/distributions/test_core.py
141+
tests/dims/distributions/test_scalar.py
142+
tests/dims/distributions/test_vector.py
143+
tests/dims/test_model.py
144+
138145
fail-fast: false
139146
runs-on: ${{ matrix.os }}
140147
env:

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ Domain specific
254254
- `Exoplanet <https://github.com/dfm/exoplanet>`__: a toolkit for modeling of transit and/or radial velocity observations of exoplanets and other astronomical time series.
255255
- `beat <https://github.com/hvasbath/beat>`__: Bayesian Earthquake Analysis Tool.
256256
- `CausalPy <https://github.com/pymc-labs/CausalPy>`__: A package focussing on causal inference in quasi-experimental settings.
257+
- `PyMC-Marketing <https://github.com/pymc-labs/pymc-marketing>`__: Bayesian marketing toolbox for marketing mix modeling, customer lifetime value, and more.
257258

258259
Please contact us if your software is not listed here.
259260

conda-envs/environment-alternative-backends.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies:
2222
- numpyro>=0.8.0
2323
- pandas>=0.24.0
2424
- pip
25-
- pytensor>=2.31.2,<2.32
25+
- pytensor>=2.31.7,<2.32
2626
- python-graphviz
2727
- networkx
2828
- rich>=13.7.1

conda-envs/environment-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
- numpy>=1.25.0
1313
- pandas>=0.24.0
1414
- pip
15-
- pytensor>=2.31.2,<2.32
15+
- pytensor>=2.31.7,<2.32
1616
- python-graphviz
1717
- networkx
1818
- scipy>=1.4.1

conda-envs/environment-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- numpy>=1.25.0
1212
- pandas>=0.24.0
1313
- pip
14-
- pytensor>=2.31.2,<2.32
14+
- pytensor>=2.31.7,<2.32
1515
- python-graphviz
1616
- rich>=13.7.1
1717
- scipy>=1.4.1

conda-envs/environment-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
- pandas>=0.24.0
1515
- pip
1616
- polyagamma
17-
- pytensor>=2.31.2,<2.32
17+
- pytensor>=2.31.7,<2.32
1818
- python-graphviz
1919
- networkx
2020
- rich>=13.7.1

conda-envs/windows-environment-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
- numpy>=1.25.0
1313
- pandas>=0.24.0
1414
- pip
15-
- pytensor>=2.31.2,<2.32
15+
- pytensor>=2.31.7,<2.32
1616
- python-graphviz
1717
- networkx
1818
- rich>=13.7.1

conda-envs/windows-environment-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies:
1515
- pandas>=0.24.0
1616
- pip
1717
- polyagamma
18-
- pytensor>=2.31.2,<2.32
18+
- pytensor>=2.31.7,<2.32
1919
- python-graphviz
2020
- networkx
2121
- rich>=13.7.1

docs/source/api.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ API
2323
api/backends
2424
api/misc
2525
api/testing
26+
api/dims
2627

2728
------------------
2829
Dimensionality

0 commit comments

Comments
 (0)