From 3fcc7f0f95c02d9f82575c73fdd1734f60c41255 Mon Sep 17 00:00:00 2001 From: lgiacome Date: Wed, 4 Dec 2024 17:28:06 +0100 Subject: [PATCH 1/2] add missing dependencies and remove useless installs in the test workflow --- .github/workflows/pr_workflow.yaml | 1 - setup.py | 6 ++++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr_workflow.yaml b/.github/workflows/pr_workflow.yaml index 17a3ac20..f46b1954 100644 --- a/.github/workflows/pr_workflow.yaml +++ b/.github/workflows/pr_workflow.yaml @@ -19,7 +19,6 @@ jobs: python -m pip install --upgrade pip pip install wheel pip install numpy cython h5py - pip install xtrack xpart xfields nafflib pip install --no-build-isolation .[tests] - name: Run tests run: | diff --git a/setup.py b/setup.py index 40a9b861..66500fcd 100644 --- a/setup.py +++ b/setup.py @@ -44,9 +44,11 @@ 'numpy>=1.0', 'scipy', 'pyyaml', - 'pandas' + 'pandas', + 'xpart', + 'xfields' ], extras_require={ - 'tests': ['pytest', 'PyHEADTAIL'], + 'tests': ['pytest', 'PyHEADTAIL', 'nafflib'], }, ) From 8b343762bd89f162cd9285e633946011b8fff216 Mon Sep 17 00:00:00 2001 From: giadarol Date: Thu, 13 Feb 2025 17:00:34 +0100 Subject: [PATCH 2/2] Change version number --- xwakes/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwakes/_version.py b/xwakes/_version.py index 8a9cef46..2048d8dd 100644 --- a/xwakes/_version.py +++ b/xwakes/_version.py @@ -3,4 +3,4 @@ # Copyright (c) CERN, 2024. # # ######################################### # -__version__ = '0.2.1' +__version__ = '0.2.2'