Skip to content

Commit d4ef44b

Browse files
committed
More thurough renaming, including moving the module
1 parent 95d4404 commit d4ef44b

Some content is hidden

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

74 files changed

+61
-58
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pymc_experimental/_version.py export-subst
1+
pymc_extras/_version.py export-subst

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches: [main]
77
paths:
88
- ".github/workflows/*"
9-
- "pymc_experimental/**"
9+
- "pymc_extras/**"
1010
- "tests/**"
1111
- "setup.py"
1212
- "pyproject.toml"
@@ -37,16 +37,16 @@ jobs:
3737
environment-file: conda-envs/environment-test.yml
3838
create-args: >-
3939
python=${{matrix.python-version}}
40-
environment-name: pymc-experimental-test
40+
environment-name: pymc-extras-test
4141
init-shell: bash
4242
cache-environment: true
43-
- name: Install pymc-experimental
43+
- name: Install pymc-extras
4444
run: |
4545
pip install -e .
4646
python --version
4747
- name: Run tests
4848
run: |
49-
python -m pytest -vv --cov=pymc_experimental --cov-append --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET
49+
python -m pytest -vv --cov=pymc_extras --cov-append --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET
5050
- name: Upload coverage to Codecov
5151
uses: codecov/codecov-action@v2
5252
with:
@@ -76,18 +76,18 @@ jobs:
7676
micromamba-version: "1.5.10-0" # Until https://github.com/mamba-org/mamba/issues/3467 is not fixed
7777
create-args: >-
7878
python=${{matrix.python-version}}
79-
environment-name: pymc-experimental-test
79+
environment-name: pymc-extras-test
8080
init-shell: cmd.exe
8181
cache-environment: true
82-
- name: Install pymc-experimental
82+
- name: Install pymc-extras
8383
run: |
8484
pip install -e .
8585
python --version
8686
- name: Run tests
8787
# This job uses a cmd shell, therefore the environment variable syntax is different!
8888
# The ">-" in the next line replaces newlines with spaces (see https://stackoverflow.com/a/66809682).
8989
run: >-
90-
python -m pytest -vv --cov=pymc_experimental --cov-append --cov-report=xml --cov-report term --durations=50 %TEST_SUBSET%
90+
python -m pytest -vv --cov=pymc_extras --cov-append --cov-report=xml --cov-report term --durations=50 %TEST_SUBSET%
9191
- name: Upload coverage to Codecov
9292
uses: codecov/codecov-action@v2
9393
with:

.gitpod.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ tasks:
33
- name: initialize
44
init: |
55
mkdir -p .vscode
6-
echo '{"python.defaultInterpreterPath": "/workspace/pymc-experimental/env/bin/python"}' > .vscode/settings.json
6+
echo '{"python.defaultInterpreterPath": "/workspace/pymc-extras/env/bin/python"}' > .vscode/settings.json
77
conda init bash && source ~/.bashrc
88
conda env update -f conda-envs/environment-test.yml -p env
9-
conda activate /workspace/pymc-experimental/env
9+
conda activate /workspace/pymc-extras/env
1010
pip install -r requirements-dev.txt
1111
pip install -e .
1212
command: |
13-
conda init bash && echo "conda activate /workspace/pymc-experimental/env" >> ~/.bashrc && source ~/.bashrc
13+
conda init bash && echo "conda activate /workspace/pymc-extras/env" >> ~/.bashrc && source ~/.bashrc
1414
1515
vscode:
1616
extensions:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ repos:
2727
hooks:
2828
- id: no-print-statements
2929
exclude: _version.py
30-
files: ^pymc_experimental/
30+
files: ^pymc_extras/

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion

MANIFEST.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
include requirements*.txt
22
include *.md *.rst
33
include LICENSE
4-
include pymc_experimental/version.txt
4+
include README.md
5+
include pymc_extras/version.txt
6+
include requirements.txt
7+
include requirements-dev.txt

conda-envs/environment-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: pymc-experimental-test
1+
name: pymc-extras-test
22
channels:
33
- conda-forge
44
- nodefaults

conda-envs/windows-environment-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: pymc-experimental-test
1+
name: pymc-extras-test
22
channels:
33
- conda-forge
44
- defaults

docs/api_reference.rst

Lines changed: 7 additions & 7 deletions

docs/conf.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,18 @@
2929
import os
3030
import sys
3131

32-
import pymc_experimental # isort:skip
32+
import pymc_extras # isort:skip
3333

3434
sys.path.insert(0, os.path.abspath("../"))
3535

3636
# -- Project information -----------------------------------------------------
3737

38-
project = "pymc_experimental"
38+
project = "pymc_extras"
3939
copyright = "2022, pymc-devs"
4040
author = "pymc-devs"
4141

4242
# The short X.Y version
43-
version = pymc_experimental.__version__
43+
version = pymc_extras.__version__
4444
# The full version, including alpha/beta/rc tags
4545
release = version
4646

@@ -118,7 +118,7 @@
118118
}
119119
html_context = {
120120
"github_user": "pymc-devs",
121-
"github_repo": "pymc-experimental",
121+
"github_repo": "pymc-extras",
122122
"github_version": "main",
123123
"doc_path": "docs",
124124
"default_mode": "light",
@@ -133,7 +133,7 @@
133133
# -- Options for HTMLHelp output ---------------------------------------------
134134

135135
# Output file base name for HTML help builder.
136-
htmlhelp_basename = "pymc_experimentaldoc"
136+
htmlhelp_basename = "pymc_extrasdoc"
137137

138138

139139
# -- Options for LaTeX output ------------------------------------------------
@@ -159,9 +159,9 @@
159159
latex_documents = [
160160
(
161161
master_doc,
162-
"pymc_experimental.tex",
163-
"pymc_experimental Documentation",
164-
"The developers of pymc_experimental",
162+
"pymc_extras.tex",
163+
"pymc_extras Documentation",
164+
"The developers of pymc_extras",
165165
"manual",
166166
),
167167
]
@@ -171,7 +171,7 @@
171171

172172
# One entry per manual page. List of tuples
173173
# (source start file, name, description, authors, manual section).
174-
man_pages = [(master_doc, "pymc_experimental", "pymc_experimental Documentation", [author], 1)]
174+
man_pages = [(master_doc, "pymc_extras", "pymc_extras Documentation", [author], 1)]
175175

176176

177177
# -- Options for Texinfo output ----------------------------------------------
@@ -182,10 +182,10 @@
182182
texinfo_documents = [
183183
(
184184
master_doc,
185-
"pymc_experimental",
186-
"pymc_experimental Documentation",
185+
"pymc_extras",
186+
"pymc_extras Documentation",
187187
author,
188-
"pymc_experimental",
188+
"pymc_extras",
189189
"One line description of project.",
190190
"Miscellaneous",
191191
),

0 commit comments

Comments
 (0)