Skip to content

Commit d4857ea

Browse files
chore: Migrate from diana-hep GitHub org to scikit-hep (#643)
* Replace all instances of diana-hep with scikit-hep
1 parent 847866f commit d4857ea

24 files changed

+50
-50
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Description
22

3-
Please first read [CONTRIBUTING.md](https://github.com/diana-hep/pyhf/tree/master/CONTRIBUTING.md).
3+
Please first read [CONTRIBUTING.md](https://github.com/scikit-hep/pyhf/tree/master/CONTRIBUTING.md).
44

55
Please describe the purpose of this pull request in some detail. Reference and link to any relevant issues or pull requests.
66

.github/PULL_REQUEST_TEMPLATE/Bug-Fix.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Pull Request Description
22

3-
Please first read [CONTRIBUTING.md](https://github.com/diana-hep/pyhf/tree/master/CONTRIBUTING.md).
3+
Please first read [CONTRIBUTING.md](https://github.com/scikit-hep/pyhf/tree/master/CONTRIBUTING.md).
44

55
Please describe the purpose of this pull request in some detail and what bug it fixes. Reference and link to any relevant issues or pull requests (such as the issue in which this bug was first discussed).
66

.github/PULL_REQUEST_TEMPLATE/Feature.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Pull Request Description
22

3-
Please first read [CONTRIBUTING.md](https://github.com/diana-hep/pyhf/tree/master/CONTRIBUTING.md).
3+
Please first read [CONTRIBUTING.md](https://github.com/scikit-hep/pyhf/tree/master/CONTRIBUTING.md).
44

55
Please describe the purpose of this pull request in some detail and what the specific feature being added will do. Reference and link to any relevant issues or pull requests (such as the issue in which this feature was first suggested).
66

.github/workflows/merged.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ jobs:
1414
- name: Trigger Binder build
1515
run: |
1616
# Use Binder build API to trigger repo2docker to build image on GKE and OVH Binder Federation clusters
17-
bash binder/trigger_binder.sh https://gke.mybinder.org/build/gh/diana-hep/pyhf/master
18-
bash binder/trigger_binder.sh https://ovh.mybinder.org/build/gh/diana-hep/pyhf/master
17+
bash binder/trigger_binder.sh https://gke.mybinder.org/build/gh/scikit-hep/pyhf/master
18+
bash binder/trigger_binder.sh https://ovh.mybinder.org/build/gh/scikit-hep/pyhf/master

.github/workflows/publish-package.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build-and-publish:
14-
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
14+
name: Build and publish Python distro to (Test)PyPI
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@master
@@ -30,13 +30,13 @@ jobs:
3030
python -m pep517.build --source --binary --out-dir dist/ .
3131
- name: Publish distribution 📦 to Test PyPI
3232
# every PR will trigger a push event on master, so check the push event is actually coming from master
33-
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'diana-hep/pyhf'
33+
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'scikit-hep/pyhf'
3434
uses: pypa/[email protected]
3535
with:
3636
password: ${{ secrets.test_pypi_password }}
3737
repository_url: https://test.pypi.org/legacy/
3838
- name: Publish distribution 📦 to PyPI
39-
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && github.repository == 'diana-hep/pyhf'
39+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && github.repository == 'scikit-hep/pyhf'
4040
uses: pypa/[email protected]
4141
with:
4242
password: ${{ secrets.pypi_password }}

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ If you would like to make a pull request please:
2121

2222
## Bug Reports
2323

24-
If you have found a bug please report it by filling out the [bug report template](https://github.com/diana-hep/pyhf/issues/new?template=Bug-Report.md&labels=bug&title=Bug+Report+:+Title+Here).
24+
If you have found a bug please report it by filling out the [bug report template](https://github.com/scikit-hep/pyhf/issues/new?template=Bug-Report.md&labels=bug&title=Bug+Report+:+Title+Here).
2525

2626
## Installing the development environment
2727

28-
We recommend first reading the "[Developing](https://diana-hep.org/pyhf/development.html)" page on the pyhf website and the coming back here.
28+
We recommend first reading the "[Developing](https://scikit-hep.org/pyhf/development.html)" page on the pyhf website and the coming back here.
2929

3030
You can install the development environment (which includes a number of extra) libraries and all others needed to run the tests via `pip`:
3131

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1169739.svg)](https://doi.org/10.5281/zenodo.1169739)
44

5-
[![Travis Build Status](https://travis-ci.org/diana-hep/pyhf.svg?branch=master)](https://travis-ci.org/diana-hep/pyhf)
6-
[![GitHub Actions Status: CI](https://github.com/diana-hep/pyhf/workflows/CI/CD/badge.svg)](https://github.com/diana-hep/pyhf/actions?query=workflow%3ACI%2FCD+branch%3Amaster)
7-
[![GitHub Actions Status: Publish](https://github.com/diana-hep/pyhf/workflows/publish%20distributions/badge.svg)](https://github.com/diana-hep/pyhf/actions?query=workflow%3A%22publish+distributions%22+branch%3Amaster)
5+
[![Travis Build Status](https://travis-ci.org/scikit-hep/pyhf.svg?branch=master)](https://travis-ci.org/scikit-hep/pyhf)
6+
[![GitHub Actions Status: CI](https://github.com/scikit-hep/pyhf/workflows/CI/CD/badge.svg)](https://github.com/scikit-hep/pyhf/actions?query=workflow%3ACI%2FCD+branch%3Amaster)
7+
[![GitHub Actions Status: Publish](https://github.com/scikit-hep/pyhf/workflows/publish%20distributions/badge.svg)](https://github.com/scikit-hep/pyhf/actions?query=workflow%3A%22publish+distributions%22+branch%3Amaster)
88
[![Docker Automated](https://img.shields.io/docker/automated/pyhf/pyhf.svg)](https://hub.docker.com/r/pyhf/pyhf/)
9-
[![Code Coverage](https://codecov.io/gh/diana-hep/pyhf/graph/badge.svg?branch=master)](https://codecov.io/gh/diana-hep/pyhf?branch=master)
10-
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/diana-hep/pyhf.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/diana-hep/pyhf/latest/files/)
11-
[![CodeFactor](https://www.codefactor.io/repository/github/diana-hep/pyhf/badge)](https://www.codefactor.io/repository/github/diana-hep/pyhf)
9+
[![Code Coverage](https://codecov.io/gh/scikit-hep/pyhf/graph/badge.svg?branch=master)](https://codecov.io/gh/scikit-hep/pyhf?branch=master)
10+
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/scikit-hep/pyhf.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/scikit-hep/pyhf/latest/files/)
11+
[![CodeFactor](https://www.codefactor.io/repository/github/scikit-hep/pyhf/badge)](https://www.codefactor.io/repository/github/scikit-hep/pyhf)
1212
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
1313

14-
[![Docs](https://img.shields.io/badge/docs-master-blue.svg)](https://diana-hep.github.io/pyhf)
15-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/diana-hep/pyhf/master?filepath=docs%2Fexamples%2Fnotebooks%2Fbinderexample%2FStatisticalAnalysis.ipynb)
14+
[![Docs](https://img.shields.io/badge/docs-master-blue.svg)](https://scikit-hep.github.io/pyhf)
15+
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/scikit-hep/pyhf/master?filepath=docs%2Fexamples%2Fnotebooks%2Fbinderexample%2FStatisticalAnalysis.ipynb)
1616

1717
[![PyPI version](https://badge.fury.io/py/pyhf.svg)](https://badge.fury.io/py/pyhf)
1818
[![Supported Python versionss](https://img.shields.io/pypi/pyversions/pyhf.svg)](https://pypi.org/project/pyhf/)
@@ -73,8 +73,8 @@ results obtained from this package are validated against output computed from Hi
7373
nobs = 55, b = 50, db = 7, nom_sig = 10.
7474
```
7575

76-
<img src="https://raw.githubusercontent.com/diana-hep/pyhf/master/docs/_static/img/manual_1bin_55_50_7.png" alt="manual" width="500"/>
77-
<img src="https://raw.githubusercontent.com/diana-hep/pyhf/master/docs/_static/img/hfh_1bin_55_50_7.png" alt="manual" width="500"/>
76+
<img src="https://raw.githubusercontent.com/scikit-hep/pyhf/master/docs/_static/img/manual_1bin_55_50_7.png" alt="manual" width="500"/>
77+
<img src="https://raw.githubusercontent.com/scikit-hep/pyhf/master/docs/_static/img/hfh_1bin_55_50_7.png" alt="manual" width="500"/>
7878

7979

8080
## A two bin example
@@ -84,8 +84,8 @@ bin 1: nobs = 100, b = 100, db = 15., nom_sig = 30.
8484
bin 2: nobs = 145, b = 150, db = 20., nom_sig = 45.
8585
```
8686

87-
<img src="https://raw.githubusercontent.com/diana-hep/pyhf/master/docs/_static/img/manual_2_bin_100.0_145.0_100.0_150.0_15.0_20.0_30.0_45.0.png" alt="manual" width="500"/>
88-
<img src="https://raw.githubusercontent.com/diana-hep/pyhf/master/docs/_static/img/hfh_2_bin_100.0_145.0_100.0_150.0_15.0_20.0_30.0_45.0.png" alt="manual" width="500"/>
87+
<img src="https://raw.githubusercontent.com/scikit-hep/pyhf/master/docs/_static/img/manual_2_bin_100.0_145.0_100.0_150.0_15.0_20.0_30.0_45.0.png" alt="manual" width="500"/>
88+
<img src="https://raw.githubusercontent.com/scikit-hep/pyhf/master/docs/_static/img/hfh_2_bin_100.0_145.0_100.0_150.0_15.0_20.0_30.0_45.0.png" alt="manual" width="500"/>
8989

9090
## Installation
9191

@@ -107,4 +107,4 @@ pip uninstall pyhf
107107

108108
## Authors
109109

110-
Please check the [contribution statistics for a list of contributors](https://github.com/diana-hep/pyhf/graphs/contributors)
110+
Please check the [contribution statistics for a list of contributors](https://github.com/scikit-hep/pyhf/graphs/contributors)

docs/_templates/modifierclass.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:github_url: https://github.com/diana-hep/pyhf/blob/master/{{module | replace(".", "/") }}
1+
:github_url: https://github.com/scikit-hep/pyhf/blob/master/{{module | replace(".", "/") }}
22

33
{{ name | escape | underline}}
44

docs/bib/docs.bib

+3-3
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,18 @@ @Article{Cowan:2010js
8383

8484
@misc{schema_workspace,
8585
title = {Workspace Schema},
86-
url = {https://diana-hep.org/pyhf/schemas/1.0.0/workspace.json},
86+
url = {https://scikit-hep.org/pyhf/schemas/1.0.0/workspace.json},
8787
note = {Accessed: 2019-06-20}
8888
}
8989

9090
@misc{schema_model,
9191
title = {Model Schema},
92-
url = {https://diana-hep.org/pyhf/schemas/1.0.0/model.json},
92+
url = {https://scikit-hep.org/pyhf/schemas/1.0.0/model.json},
9393
note = {Accessed: 2019-06-20}
9494
}
9595

9696
@misc{schema_defs,
9797
title = {HistFactory Definitions Schema},
98-
url = {https://diana-hep.org/pyhf/schemas/1.0.0/defs.json},
98+
url = {https://scikit-hep.org/pyhf/schemas/1.0.0/defs.json},
9999
note = {Accessed: 2019-06-20}
100100
}

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def setup(app):
5353
]
5454

5555
# Github repo
56-
issues_github_path = 'diana-hep/pyhf'
56+
issues_github_path = 'scikit-hep/pyhf'
5757

5858
# Generate the API documentation when building
5959
autosummary_generate = True

docs/development.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ To develop, we suggest using `virtual environments <https://packaging.python.org
55

66
.. code-block:: console
77
8-
git clone https://github.com/diana-hep/pyhf.git
8+
git clone https://github.com/scikit-hep/pyhf.git
99
1010
and install all necessary packages for development
1111

docs/examples.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Examples
44
Try out in Binder! |Binder|
55

66
.. |Binder| image:: https://mybinder.org/badge_logo.svg
7-
:target: https://mybinder.org/v2/gh/diana-hep/pyhf/master?filepath=docs%2Fexamples%2Fnotebooks%2Fbinderexample%2FStatisticalAnalysis.ipynb
7+
:target: https://mybinder.org/v2/gh/scikit-hep/pyhf/master?filepath=docs%2Fexamples%2Fnotebooks%2Fbinderexample%2FStatisticalAnalysis.ipynb
88

99
Notebooks:
1010

docs/examples/notebooks/binderexample/StatisticalAnalysis.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"\n",
4848
"## The Demo\n",
4949
"\n",
50-
"The input data for the statistical analysis was built generated using the containerized workflow engine [yadage](https://github.com/diana-hep/yadage) (see demo from KubeCon 2018 [[youtube](https://github.com/diana-hep/yadage)]). Similarly to Binder this utilizes modern container technology for reproducible science. Below you see the execution graph leading up to the model input data at the bottom."
50+
"The input data for the statistical analysis was built generated using the containerized workflow engine [yadage](https://github.com/scikit-hep/yadage) (see demo from KubeCon 2018 [[youtube](https://github.com/scikit-hep/yadage)]). Similarly to Binder this utilizes modern container technology for reproducible science. Below you see the execution graph leading up to the model input data at the bottom."
5151
]
5252
},
5353
{

docs/faq.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Questions
99
Is it possible to set the backend from the CLI?
1010
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1111

12-
Not at the moment. `Pull Requests <https://github.com/diana-hep/pyhf/compare>`__ are welcome.
12+
Not at the moment. `Pull Requests <https://github.com/scikit-hep/pyhf/compare>`__ are welcome.
1313

1414
See also:
1515
- :issue:`266`

docs/governance/ROADMAP.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# pyhf 2019 into 2020 Roadmap (Issue [#561](https://github.com/diana-hep/pyhf/issues/561))
1+
# pyhf 2019 into 2020 Roadmap (Issue [#561](https://github.com/scikit-hep/pyhf/issues/561))
22

33
## Overview and Goals
44

@@ -35,7 +35,7 @@ The roadmap will be executed over mostly Quarter 3 of 2019 through Quarter 1 of
3535

3636
1. **Documentation and Deployment**
3737
- [ ] Add docstrings to all functions and classes (Issues #38, #349) [2019-Q3]
38-
- [ ] [Greatly revise and expand examples](https://github.com/diana-hep/pyhf/issues?q=is%3Aopen+is%3Aissue+label%3Adocs) (Issues #168, #202, #212, #325, #342, #349, #367) [2019-Q3 → 2019-Q4]
38+
- [ ] [Greatly revise and expand examples](https://github.com/scikit-hep/pyhf/issues?q=is%3Aopen+is%3Aissue+label%3Adocs) (Issues #168, #202, #212, #325, #342, #349, #367) [2019-Q3 → 2019-Q4]
3939
- [ ] Add small case studies with published sbottom likelihood from HEPData
4040
- [ ] Move to [scikit-hep](https://github.com/scikit-hep) GitHub organization [2019-Q3]
4141
- [ ] Develop a release schedule/criteria [2019-Q4]

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
.. raw:: html
2121

22-
<a class="github-fork-ribbon right-top fixed" href="https://github.com/diana-hep/pyhf/fork" data-ribbon="Fork me on GitHub" title="Fork me on GitHub">Fork me on GitHub</a>
22+
<a class="github-fork-ribbon right-top fixed" href="https://github.com/scikit-hep/pyhf/fork" data-ribbon="Fork me on GitHub" title="Fork me on GitHub">Fork me on GitHub</a>
2323

2424
.. mdinclude:: ../README.md
2525

docs/installation.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -61,44 +61,44 @@ Install latest stable release from `PyPI <https://pypi.org/project/pyhf/>`__...
6161
pip install pyhf[xmlio]
6262
6363
64-
Install latest development version from `GitHub <https://github.com/diana-hep/pyhf>`__...
64+
Install latest development version from `GitHub <https://github.com/scikit-hep/pyhf>`__...
6565
-----------------------------------------------------------------------------------------
6666

6767
... with NumPy backend
6868
++++++++++++++++++++++
6969

7070
.. code-block:: console
7171
72-
pip install --ignore-installed -U "git+https://github.com/diana-hep/pyhf.git#egg=pyhf"
72+
pip install --ignore-installed -U "git+https://github.com/scikit-hep/pyhf.git#egg=pyhf"
7373
7474
... with TensorFlow backend
7575
+++++++++++++++++++++++++++
7676

7777
.. code-block:: console
7878
79-
pip install --ignore-installed -U "git+https://github.com/diana-hep/pyhf.git#egg=pyhf[tensorflow]"
79+
pip install --ignore-installed -U "git+https://github.com/scikit-hep/pyhf.git#egg=pyhf[tensorflow]"
8080
8181
... with PyTorch backend
8282
++++++++++++++++++++++++
8383

8484
.. code-block:: console
8585
86-
pip install --ignore-installed -U "git+https://github.com/diana-hep/pyhf.git#egg=pyhf[torch]"
86+
pip install --ignore-installed -U "git+https://github.com/scikit-hep/pyhf.git#egg=pyhf[torch]"
8787
8888
... with all backends
8989
+++++++++++++++++++++
9090

9191
.. code-block:: console
9292
93-
pip install --ignore-installed -U "git+https://github.com/diana-hep/pyhf.git#egg=pyhf[tensorflow,torch]"
93+
pip install --ignore-installed -U "git+https://github.com/scikit-hep/pyhf.git#egg=pyhf[tensorflow,torch]"
9494
9595
9696
... with xml import/export functionality
9797
++++++++++++++++++++++++++++++++++++++++
9898

9999
.. code-block:: console
100100
101-
pip install --ignore-installed -U "git+https://github.com/diana-hep/pyhf.git#egg=pyhf[xmlio]"
101+
pip install --ignore-installed -U "git+https://github.com/scikit-hep/pyhf.git#egg=pyhf[xmlio]"
102102
103103
104104
Updating :code:`pyhf`

docs/likelihood.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ check that it conforms to the provided workspace specification as follows:
2929
import json, requests, jsonschema
3030
workspace = json.load(open('/path/to/analysis_workspace.json'))
3131
# if no exception is raised, it found and parsed the schema
32-
schema = requests.get('https://diana-hep.org/pyhf/schemas/1.0.0/workspace.json').json()
32+
schema = requests.get('https://scikit-hep.org/pyhf/schemas/1.0.0/workspace.json').json()
3333
# If no exception is raised by validate(), the instance is valid.
3434
jsonschema.validate(instance=workspace, schema=schema)
3535

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def _is_test_pypi():
7474
description='(partial) pure python histfactory implementation',
7575
long_description=long_description,
7676
long_description_content_type='text/markdown',
77-
url='https://github.com/diana-hep/pyhf',
77+
url='https://github.com/scikit-hep/pyhf',
7878
author='Lukas Heinrich, Matthew Feickert, Giordon Stark',
7979
8080
license='Apache',

src/pyhf/schemas/1.0.0/defs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-06/schema#",
3-
"$id": "https://diana-hep.org/pyhf/schemas/1.0.0/defs.json",
3+
"$id": "https://scikit-hep.org/pyhf/schemas/1.0.0/defs.json",
44
"definitions": {
55
"observation": {
66
"type": "object",
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-06/schema#",
3-
"$id": "https://diana-hep.org/pyhf/schemas/1.0.0/measurement.json",
3+
"$id": "https://scikit-hep.org/pyhf/schemas/1.0.0/measurement.json",
44
"type": "object",
55
"$ref": "defs.json#/definitions/measurement"
66
}

src/pyhf/schemas/1.0.0/model.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-06/schema#",
3-
"$id": "https://diana-hep.org/pyhf/schemas/1.0.0/model.json",
3+
"$id": "https://scikit-hep.org/pyhf/schemas/1.0.0/model.json",
44
"type": "object",
55
"properties": {
66
"channels": { "type": "array", "items": {"$ref": "defs.json#/definitions/channel"} },

src/pyhf/schemas/1.0.0/workspace.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-06/schema#",
3-
"$id": "https://diana-hep.org/pyhf/schemas/1.0.0/workspace.json",
3+
"$id": "https://scikit-hep.org/pyhf/schemas/1.0.0/workspace.json",
44
"type": "object",
55
"properties": {
66
"channels": { "type": "array", "items": {"$ref": "defs.json#/definitions/channel"} },

src/pyhf/utils.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from . import get_backend
1010

1111
SCHEMA_CACHE = {}
12-
SCHEMA_BASE = "https://diana-hep.org/pyhf/schemas/"
12+
SCHEMA_BASE = "https://scikit-hep.org/pyhf/schemas/"
1313
SCHEMA_VERSION = '1.0.0'
1414

1515

@@ -103,7 +103,7 @@ def qmu(mu, data, pdf, init_pars, par_bounds):
103103
par_bounds(Tensor): The bounds on the paramter values
104104
105105
.. |pyhf.pdf.Model| replace:: ``pyhf.pdf.Model``
106-
.. _pyhf.pdf.Model: https://diana-hep.org/pyhf/_generated/pyhf.pdf.Model.html
106+
.. _pyhf.pdf.Model: https://scikit-hep.org/pyhf/_generated/pyhf.pdf.Model.html
107107
108108
Returns:
109109
Float: The calculated test statistic, :math:`q_{\mu}`
@@ -216,7 +216,7 @@ def hypotest(
216216
qtilde (Bool): When ``True`` perform the calculation using the alternative test statistic, :math:`\tilde{q}`, as defined in Equation (62) of `arXiv:1007.1727`_
217217
218218
.. |pyhf.pdf.Model| replace:: ``pyhf.pdf.Model``
219-
.. _pyhf.pdf.Model: https://diana-hep.org/pyhf/_generated/pyhf.pdf.Model.html
219+
.. _pyhf.pdf.Model: https://scikit-hep.org/pyhf/_generated/pyhf.pdf.Model.html
220220
221221
Keyword Args:
222222
return_tail_probs (bool): Bool for returning :math:`\textrm{CL}_{s+b}` and :math:`\textrm{CL}_{b}`

0 commit comments

Comments
 (0)