Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update conda recipie format #93

Merged
merged 4 commits into from
Dec 21, 2023
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: 1 addition & 1 deletion .github/actions/publish-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
run: |
conda config --set always_yes yes --set changeps1 no
conda create -n build-env python=3.8.*
conda activate build-envn
conda activate build-env
mamba install -c conda-forge mamba conda-build anaconda-client conda-verify
conda config --add channels mantid
conda config --add channels mantid/label/nightly
Expand Down
2 changes: 1 addition & 1 deletion EVSVesuvio/vesuvio_analysis/ICHelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def setOutputDirsForSample(IC, sampleName):

def wsHistoryMatchesInputs(runs, mode, ipfile, localPath):
if not (localPath.is_file()):
logger.notice("IP FILE NOT FOUND")
logger.notice("Cached workspace not found")
return False
local_ws = Load(Filename=str(localPath))
ws_history = local_ws.getHistory()
Expand Down
6 changes: 6 additions & 0 deletions conda/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
python:
- 3.8

jacobi:
- 0.4.2 #pinned until later versions are proven.

mantid:
- '>=6.7' #pinned until upgrade to python 3.10.
9 changes: 6 additions & 3 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,15 @@ requirements:

run:
- python {{ python }}
- mantid>=6.7
- mantid {{ mantid }}
- matplotlib
- iminuit
- h5py
- mock
- jacobi==0.4.2 #pinned untill 0.5.0 is proven
- jacobi {{ jacobi }}

test:
imports:
- EVSVesuvio

about:
home: https://github.com/mantidproject/vesuvio
Expand Down
Loading