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
10 changes: 5 additions & 5 deletions .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# WARNING: Do not edit this file manually.
# Any changes will be overwritten by Copier.
_commit: v0.4.6
_commit: v0.4.8
_src_path: gh:easyscience/templates
app_docs_url: https://easyscience.github.io/peasy-app
app_doi: 10.5281/zenodo.18163581
Expand All @@ -13,10 +13,10 @@ lib_package_name: easypeasy
lib_python_max: '3.13'
lib_python_min: '3.11'
lib_repo_name: peasy-lib
project_contact_email: support@easypeasy.org
project_copyright_years: 2021-2026
project_extended_description: For performing imaginary calculations based on a theoretical
model and refining its parameters against experimental data
project_contact_email: support@easyscience.org
project_copyright_years: 2025-2026
project_extended_description: A software for performing imaginary calculations based
on a imaginary model and refining its parameters against imaginary data
project_homepage_url: https://easyscience.github.io/peasy
project_name: EasyPeasy
project_repo_name: peasy
Expand Down
14 changes: 0 additions & 14 deletions .github/actions/publish-to-pypi/action.yml

This file was deleted.

4 changes: 3 additions & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,6 @@ jobs:
# Repository name: peasy-lib
# Workflow name: pypi-publish.yml
- name: Publish to PyPI
uses: ./.github/actions/publish-to-pypi
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: 'dist'
2 changes: 1 addition & 1 deletion .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# - Adds the label "[bot] pull request" so it is excluded from changelogs.
# - The PR body makes clear that this is automation only (no review needed).

name: 'Release PR (<source><default>)'
name: 'Release PR (developmaster)'

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2021-2026 EasyScience contributors.
Copyright (c) 2025-2026 EasyScience contributors.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
</picture>
</p>

**EasyPeasy** is a scientific software for performing imaginary
calculations based on a theoretical model and refining its parameters
against experimental data.
**EasyPeasy** is a software for performing imaginary calculations based
on a imaginary model and refining its parameters against imaginary data.

<!-- HOME REPOSITORY SECTION -->

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![](assets/images/logo_dark.svg#gh-dark-mode-only)![](assets/images/logo_light.svg#gh-light-mode-only)

# Imaginary data analysis library
# Imaginary data analysis

Here is a brief overview of the main documentation sections:

Expand Down
22 changes: 21 additions & 1 deletion docs/docs/installation-and-setup/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ To install and set up EasyPeasy, we recommend using
[**Pixi**](https://pixi.prefix.dev), a modern package manager for
Windows, macOS, and Linux.

!!! note "Main benefits of using Pixi"
??? note "Main benefits of using Pixi"

- **Ease of use**: Pixi simplifies the installation process, making it
accessible even for users with limited experience in package management.
Expand All @@ -37,6 +37,26 @@ This section describes the simplest way to set up EasyPeasy using

#### Setting up EasyPeasy with Pixi

<!-- prettier-ignore-start -->

- Choose a project location (local drive recommended).

??? warning ":fontawesome-brands-windows: Windows + OneDrive"

We **do not recommend creating a Pixi project inside OneDrive or other
synced folders**.

By default, Pixi creates the virtual environment inside the project
directory (in `.pixi/`). On Windows, synced folders such as OneDrive
may cause file‑system issues (e.g., path-length limitations or
restricted link operations), which can lead to unexpected install
errors or environments being recreated.

Instead, create your project in a **local directory on your drive**
where you have full write permissions.

<!-- prettier-ignore-end -->

- Initialize a new Pixi project and navigate into it:
```txt
pixi init easypeasy
Expand Down
9 changes: 5 additions & 4 deletions docs/docs/introduction/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ icon: material/information-slab-circle

## Description

**EasyPeasy** is a scientific software for performing imaginary
calculations based on a theoretical model and refining its parameters
against experimental data.
**EasyPeasy** is a software for performing imaginary calculations based
on a imaginary model and refining its parameters against imaginary data.

**EasyPeasy** is developed both as a Python library and as a
cross-platform desktop application.
Expand All @@ -17,8 +16,10 @@ Here, we focus on the Python library. For the graphical user interface
(GUI), please see the corresponding
[GUI resources](https://easyscience.github.io/peasy-app).

<!--
**EasyPeasy** is developed using the
[EasyScience framework](https://easyscience.org).
-->

## License

Expand Down Expand Up @@ -62,7 +63,7 @@ on GitHub.
## Get in Touch

For general questions or feedback, contact us at
[support@easypeasy.org](mailto:support@easypeasy.org).
[support@easyscience.org](mailto:support@easyscience.org).

To report bugs or request features, please use the
[GitHub Issue Tracker](https://github.com/easyscience/peasy-lib/issues)
Expand Down
2 changes: 1 addition & 1 deletion docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repo_url: https://github.com/easyscience/peasy-lib
edit_uri: edit/develop/docs/

# Copyright
copyright: © 2021-2026 EasyPeasy
copyright: © 2025-2026 EasyPeasy

# Sets the theme and theme-specific configuration
theme:
Expand Down
2 changes: 1 addition & 1 deletion src/easypeasy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# SPDX-FileCopyrightText: 2021-2026 EasyPeasy contributors <https://github.com/easyscience>
# SPDX-FileCopyrightText: 2025-2026 EasyPeasy contributors <https://github.com/easyscience>
# SPDX-License-Identifier: BSD-3-Clause
"""EasyPeasy library."""
2 changes: 1 addition & 1 deletion tests/integration/fitting/test_dummy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2021-2026 EasyPeasy contributors <https://github.com/easyscience>
# SPDX-FileCopyrightText: 2025-2026 EasyPeasy contributors <https://github.com/easyscience>
# SPDX-License-Identifier: BSD-3-Clause

import pytest
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/scipp-analysis/test_dummy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2021-2026 EasyPeasy contributors <https://github.com/easyscience>
# SPDX-FileCopyrightText: 2025-2026 EasyPeasy contributors <https://github.com/easyscience>
# SPDX-License-Identifier: BSD-3-Clause

import pytest
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/easypeasy/test_dummy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2021-2026 EasyPeasy contributors <https://github.com/easyscience>
# SPDX-FileCopyrightText: 2025-2026 EasyPeasy contributors <https://github.com/easyscience>
# SPDX-License-Identifier: BSD-3-Clause


Expand Down
2 changes: 1 addition & 1 deletion tools/update_spdx.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pathlib import Path

COPYRIGHT_TEXT = (
'# SPDX-FileCopyrightText: 2021-2026 EasyPeasy contributors <https://github.com/easyscience>'
'# SPDX-FileCopyrightText: 2025-2026 EasyPeasy contributors <https://github.com/easyscience>'
)
LICENSE_TEXT = '# SPDX-License-Identifier: BSD-3-Clause'

Expand Down
Loading