Skip to content

Commit 7a2d3e7

Browse files
committed
Merge branch 'master' into gp-multioutput
2 parents a2d0cc6 + b8522dc commit 7a2d3e7

File tree

264 files changed

+89910
-31453
lines changed

Some content is hidden

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

264 files changed

+89910
-31453
lines changed

.coveragerc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[run]
22
omit =
33
# exclude tests files from coverage calculation
4-
pymc3/tests/test_*.py
5-
pymc3/examples/*
4+
pymc/tests/test_*.py
Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
If you have questions about a specific use case, or you are not sure whether this is a bug or not, please post it to our discourse channel: https://discourse.pymc.io
1+
---
2+
name: 'Bug Report'
3+
about: Inform about bugs in the PyMC/PyMC3 library
4+
5+
---
26

37
## Description of your problem
48

@@ -8,17 +12,22 @@ If you have questions about a specific use case, or you are not sure whether thi
812
```
913

1014
**Please provide the full traceback.**
15+
16+
<details><summary>Complete error traceback</summary>
17+
1118
```python
12-
[The error output here]
19+
[The complete error output here]
1320
```
1421

22+
</details>
23+
1524
**Please provide any additional information below.**
1625

1726

1827
## Versions and main components
1928

20-
* PyMC3 Version:
29+
* PyMC/PyMC3 Version:
2130
* Aesara/Theano Version:
2231
* Python Version:
2332
* Operating system:
24-
* How did you install PyMC3: (conda/pip)
33+
* How did you install PyMC/PyMC3: (conda/pip)

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: PyMC Discourse
4+
url: https://discourse.pymc.io/
5+
about: Ask usage questions about PyMC/PyMC3
6+
- name: Example notebook error report
7+
url: https://github.com/pymc-devs/pymc-examples/issues
8+
about: Please report errors or desired extensions to the tutorials and examples here.

.github/workflows/arviz_compat.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
os: [ubuntu-latest, macos-latest]
1313
floatx: [float64]
1414
test-subset:
15-
- pymc3/tests/test_distributions.py
16-
- pymc3/tests/test_distributions_random.py
17-
- pymc3/tests/test_sampling.py
15+
- pymc/tests/test_distributions.py
16+
- pymc/tests/test_distributions_random.py
17+
- pymc/tests/test_sampling.py
1818
fail-fast: false
1919
runs-on: ${{ matrix.os }}
2020
env:
@@ -48,20 +48,20 @@ jobs:
4848
hashFiles('requirements.txt') }}
4949
- uses: conda-incubator/setup-miniconda@v2
5050
with:
51-
activate-environment: pymc3-dev-py39
51+
activate-environment: pymc-dev-py39
5252
channel-priority: strict
5353
environment-file: conda-envs/environment-dev-py39.yml
5454
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
55-
- name: Install pymc3
55+
- name: Install pymc
5656
run: |
57-
conda activate pymc3-dev-py39
57+
conda activate pymc-dev-py39
5858
pip install -e .
5959
python --version
6060
- name: Install latest arviz
6161
run: |
62-
conda activate pymc3-dev-py39
62+
conda activate pymc-dev-py39
6363
pip uninstall arviz -y
6464
pip install git+git://github.com/arviz-devs/arviz.git
6565
- name: Run tests
6666
run: |
67-
python -m pytest -vv --cov=pymc3 --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET
67+
python -m pytest -vv --cov=pymc --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET

.github/workflows/jaxtests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
os: [ubuntu-latest]
1313
floatx: [float64]
1414
test-subset:
15-
- pymc3/tests/test_sampling_jax.py
15+
- pymc/tests/test_sampling_jax.py
1616
fail-fast: false
1717
runs-on: ${{ matrix.os }}
1818
env:
@@ -46,19 +46,19 @@ jobs:
4646
hashFiles('requirements.txt') }}
4747
- uses: conda-incubator/setup-miniconda@v2
4848
with:
49-
activate-environment: pymc3-dev-py39
49+
activate-environment: pymc-dev-py39
5050
channel-priority: strict
5151
environment-file: conda-envs/environment-dev-py39.yml
5252
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
53-
- name: Install pymc3
53+
- name: Install pymc
5454
run: |
55-
conda activate pymc3-dev-py39
55+
conda activate pymc-dev-py39
5656
pip install -e .
5757
python --version
5858
- name: Install jax specific dependencies
5959
run: |
60-
conda activate pymc3-dev-py39
61-
pip install numpyro tensorflow_probability
60+
conda activate pymc-dev-py39
61+
pip install "numpyro>=0.8.0"
6262
- name: Run tests
6363
run: |
64-
python -m pytest -vv --cov=pymc3 --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET
64+
python -m pytest -vv --cov=pymc --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET

0 commit comments

Comments
 (0)