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
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,6 @@ If you use PyGPLA in your research, please cite the original GPLA method paper:
}
```

A dedicated software citation (JOSS) will be added here once the paper is published.

## License

BSD 2-Clause License. See `LICENSE`.
Expand Down
2 changes: 0 additions & 2 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ pygpla.stats.jitter.interval_jitter
pygpla.stats.jitter.isi_preserved_jitter
pygpla.stats.jitter.group_preserved_jitter
pygpla.stats.jitter.population_jitter
pygpla.stats.summaries.summarize_gplv_results
pygpla.stats.summaries.summarize_plv_matrix
```

## Simulations
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
try:
release = version("pygpla")
except PackageNotFoundError:
release = "0.0.1"
release = "0.0.2"
version = release

extensions = [
Expand Down
12 changes: 6 additions & 6 deletions docs/software_architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ important QA step.

## Version Management

PyGPLA currently uses an explicit package version:
PyGPLA keeps its version in a single source:

- `project.version = "0.0.1"` in `pyproject.toml`
- `__version__ = "0.0.1"` in `src/pygpla/_version.py`
- `__version__` in `src/pygpla/_version.py`

The Hatch setting `tool.hatch.version.path = "src/pygpla/_version.py"` keeps the package's
runtime version source in one place. Version bumps are therefore currently a deliberate,
manual release action rather than git-tag-driven automation.
`pyproject.toml` declares `dynamic = ["version"]` and points Hatch at that file via
`tool.hatch.version.path = "src/pygpla/_version.py"`, so the build metadata and the runtime
`pygpla.__version__` are read from the same place. Version bumps are a deliberate, manual
release action (edit `_version.py`) rather than git-tag-driven automation.
Loading
Loading