Skip to content

Commit

Permalink
DOC: update links to compwa.github.io (#335)
Browse files Browse the repository at this point in the history
* DX: switch to Python 3.9 in developer environment
  • Loading branch information
redeboer authored Jan 20, 2024
1 parent bdbb188 commit ae795b5
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-docs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
env:
JULIA_CI: "true"
PYTHONHASHSEED: "0"
PYTHON_VERSION: "3.8"
PYTHON_VERSION: "3.9"

on:
workflow_call:
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: python:3.8
image: python:3.9

.cache-definitions:
- &julia
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:
- id: check-useless-excludes

- repo: https://github.com/ComPWA/policy
rev: 0.2.0
rev: 0.2.2
hooks:
- id: check-dev-files
args:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ Style checks are enforced with [Pre-commit](https://pre-commit.com). To activate
pre-commit install
```

For more information about local Python set-up, see [here](https://compwa-org.readthedocs.io/develop.html#local-set-up).
> [!TIP]
> For more information about the local Python developer environment, see [here](https://compwa.github.io/develop#local-set-up).
This repository also contains Julia source code and Pluto notebooks. Julia can be downloaded [here](https://julialang.org/downloads). You then have to activate and instantiated the Julia environment provided in the [`julia`](./julia) folder. This can be done as follows from the root directory:

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ hidden:
---
JHEP <https://doi.org/10.1007/JHEP07(2023)228>
arXiv:2301.07010 <https://arxiv.org/abs/2301.07010>
ComPWA <https://compwa-org.readthedocs.io>
ComPWA Project <https://compwa.github.io>
GitHub repository <https://github.com/ComPWA/polarimetry>
CERN GitLab (archived) <https://gitlab.cern.ch/polarimetry/Lc2pKpi>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/uncertainties.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@
"outputs": [],
"source": [
"def create_contour(phsp: DataSample) -> jax.Array:\n",
" # See also https://compwa-org.rtfd.io/report/017.html\n",
" # See also https://compwa.github.io/report/017\n",
" m0, m1, m2, m3, s1, s2 = sp.symbols(\"m(:4) sigma(1:3)\", nonnegative=True)\n",
" filter_expr = is_within_phasespace(\n",
" s1,\n",
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ channels:
- conda-forge
dependencies:
- juliaup
- python==3.8.*
- python==3.9.*
- pip>=21.3 # pyproject.toml
- pip:
- -c .constraints/py3.8.txt -e .[dev]
- -c .constraints/py3.9.txt -e .[dev]
variables:
PRETTIER_LEGACY_CLI: "1"
PYTHONHASHSEED: 0

0 comments on commit ae795b5

Please sign in to comment.