Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Besides passing all CI checks and coverage is at 100%, make sure you also checke

After the PR has been approved by two reviewers:

- [ ] Update the code version in `clmm/__ini__.py`.
- [ ] Update the code version in `clmm/__init__.py`.
- [ ] Keep only relevant points in the squash and merge commit message.
- [ ] If any dependencies have been altered, update `environment.yml`, `pyproject.toml`, `INSTALL.md`, and `README.md`. A maintainer should also be notified to change the requirements on conda-forge.
- [ ] Update `clmm/theory/_ccl_supported_versions.py` and `clmm/theory/ccl.py` if pyccl's version constraints have been altered.
- [ ] If any dependencies have been altered, update `environment.yml`, `pyproject.toml`, `INSTALL.md`, and `README.md`. A maintainer should also be notified to change the requirements on conda-forge.
53 changes: 0 additions & 53 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ In this case you will not have to reinstall it at every change.
- **Build the documentation:** To test the docs, in the root package directory after installing, run `./update_docs`. This script both deletes the old compiled documentation files and rebuilds them. You can view the compiled docs by running `open docs/_build/html/index.html`.

> **NOTE:** If the changes you are making affect which CCL or NumCosmo versions are compatible with the code,
> please update `clmm/theory/_ccl_supported_versions.py`, `environment.yml`, `README.md` and `INSTALL.md` accordingly.
> please update `environment.yml`, `README.md` and `INSTALL.md` accordingly.
> Also, any changes on the constraints on CLMM dependencies should be reflected on `environment.yml` and `pyproject.toml`. It is also necessary to update those constraints on conda-forge after a specific release. Please notify the maintainers if that's necessary.

All these steps (except running the notebooks) are run automatically on each pull request on GitHub, so you will know if any of them require further attention before considering youre changes are ready to be reviewed. Check `details` on `Build and Check / build-gcc-ubuntu (pull_request)` section at the end of the PR and `coverage` under the `coveralls` comment in the middle of the PR.
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This should automatically pull all necessary dependencies, with the exception of
### Theory backend installation
First, choose and install a theory backend for CLMM.
This can be CCL (versions 3.1.2 or later),
NumCosmo (versions between v0.19 and v0.22),
NumCosmo (version v0.24),
or cluster_toolkit and they are installable as follows.

To install CCL as the theory/cosmology backend, run
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ For the theoretical predictions of the signal, CLMM relies on existing libraries

- [cluster-toolkit](https://cluster-toolkit.readthedocs.io/en/latest/)
- [CCL](https://ccl.readthedocs.io/en/latest/) (versions 3.1.2 or later)
- [NumCosmo](https://numcosmo.github.io/) (versions between v0.19 and v0.22)
- [NumCosmo](https://numcosmo.github.io/) (version v0.24)


(See the [INSTALL documentation](INSTALL.md) for more detailed installation instructions.)
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
- isort
- jupyter
- matplotlib
- numcosmo <= 0.24
- numcosmo == 0.24
- numpy >= 2.0
- pandoc
- pip
Expand Down
Loading