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
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.10"]
#python: ["3.8", "3.10"]
python: ["3.10"]
task:
- name: Test
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1.2.1 : Updating configs of other surveys: SKAO, DESI, LSST to work in new config file structure
1.2.2 : Galaxy sample split for sources and lenses. Feedback prints more consistent.
1.2.3 : Added a new likelihood function for photometric and spectroscopic surveys.
1.2.4 : Discontinued support for python3.8. Fixed the style for likelihood scripts.
6 changes: 4 additions & 2 deletions cosmicfishpie/configs/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,10 @@ def init(
),
)
settings.setdefault("specs_dir", settings["specs_dir_default"])
settings.setdefault("external_data_dir", os.path.join(os.path.dirname(os.path.realpath(__file__)),
"external_data"))
settings.setdefault(
"external_data_dir",
os.path.join(os.path.dirname(os.path.realpath(__file__)), "external_data"),
)
settings.setdefault("survey_name", surveyName)
settings.setdefault("survey_specs", "ISTF-Optimistic")
settings.setdefault("survey_name_photo", "Euclid-Photometric-ISTF-Pessimistic")
Expand Down
2 changes: 1 addition & 1 deletion cosmicfishpie/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
_MINOR = "2"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "3"
_PATCH = "4"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Installation
============

**cosmicfishpie** supports Python >= 3.8.
**cosmicfishpie** supports Python >= 3.10.

## Requirements

Expand Down
Loading