Skip to content
Merged

Tc #63

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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
repos:
# https://pycqa.github.io/isort/docs/configuration/black_compatibility.html#integration-with-pre-commit
- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 9.0.0a3
hooks:
- id: isort
args: ["--profile", "black", "--filter-files"]
- repo: https://github.com/psf/black
rev: 24.10.0
rev: 26.5.1
hooks:
- id: black
args: ["--line-length=100"]
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html?highlight=other%20tools#flake8
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
rev: 7.3.0
hooks:
- id: flake8
args: ["--max-line-length=100", "--extend-ignore=E203,E712"]
# https://github.com/pre-commit/pre-commit-hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
# codespell
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.2
hooks:
- id: codespell
args: [
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

All notable changes to the Eventdisplay_AnalysisFiles_CTA project will be documented in this file.
Changes for upcoming releases can be found in the [docs/changes](docs/changes) directory.
Note that changes before release v1.12.0 are not documented here.

This changelog is generated using [Towncrier](https://towncrier.readthedocs.io/).

<!-- towncrier release notes start -->
10 changes: 2 additions & 8 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ message: If you use this software, please cite it using these metadata.
title: "Eventdisplay Analysis Files for CTA"
abstract: "Parameter and configuration files for Eventdisplay analysis for CTA"
doi: "https://doi.org/10.5281/zenodo.4263712"
version: 1.8.0
date-released: 2024-12-18
version: 1.13.0
date-released: 2026-07-10
keywords:
- "gamma-ray astronomy"
- "astronomy software"
Expand All @@ -22,12 +22,6 @@ authors:
family-names: Maier
affiliation: DESY
orcid: https://orcid.org/0000-0001-9868-4700
- given-names: Orel
family-names: Gueta
affiliation: DESY
- given-names: Elisa
family-names: Pueschel
affiliation: DESY
references:
- scope: "Additional material"
type: article
Expand Down
Empty file added docs/changes/.gitkeep
Empty file.
24 changes: 24 additions & 0 deletions towncrier.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[tool.towncrier]
name = "Eventdisplay_AnalysisFiles_CTA"
directory = "docs/changes"
filename = "CHANGELOG.md"
underlines = [ "", "", "" ]
title_format = "## [{version}](https://github.com/Eventdisplay/Eventdisplay_AnalysisFiles_CTA/releases/tag/{version}) - {project_date}"
issue_format = "[#{issue}](https://github.com/Eventdisplay/Eventdisplay_AnalysisFiles_CTA/issues/{issue})"
start_string = "<!-- towncrier release notes start -->\n"

[tool.towncrier.fragment.feature]
name = "New Feature"
showcontent = true

[tool.towncrier.fragment.bugfix]
name = "Bugfixes"
showcontent = true

[tool.towncrier.fragment.maintenance]
name = "Maintenance"
showcontent = true

[tool.towncrier.fragment.doc]
name = "Documentation"
showcontent = true
Comment on lines +10 to +24