Skip to content

Commit dfbbf33

Browse files
committed
Follow Mantid with python version
1 parent eb656cb commit dfbbf33

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/actions/publish-package/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
shell: bash -l {0}
2323
run: |
2424
conda config --set always_yes yes --set changeps1 no
25-
conda create -n build-env python=3.12
25+
conda create -n build-env
2626
conda activate build-env
2727
mamba install -c conda-forge mamba conda-build anaconda-client conda-verify boa
2828
conda config --add channels mantid/label/nightly

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ You will also need to edit the run configurations:
5252
You can now also develop MSlice using a Mantid conda environment.
5353
First install Mantid using `conda env create -f mslice-developer.yml`,
5454
then add this interpreter by going to the `File->Settings` in PyCharm, then `Project: mslice -> Python Interpreter`,
55-
click the cog on the right side to add an existing interpreter and select `Conda` and `Python 3.12 (mantidnightly)`.
55+
click the cog on the right side to add an existing interpreter and select `Conda` and `Python 3.10 (mantidnightly)`.
5656
Then go to `Run -> Edit Configurations` and create new configuration with this interpreter.
5757
Specify `start_mslice.py` as the startup script.
5858

conda/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
python:
2-
- 3.12
2+
- '>=3.10'

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ dependencies:
1313
- pyqt
1414
- qtconsole
1515
- qtpy
16-
- python=3.12
16+
- python #=3.12

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ authors = [
1212
]
1313
description = "Visualise and slice data from Mantid"
1414
readme = "README.md"
15-
requires-python = ">=3.12"
15+
requires-python = ">=3.10"
1616
classifiers = [
17-
"Programming Language :: Python :: 3.12",
17+
"Programming Language :: Python :: 3.10",
1818
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
1919
"Operating System :: OS Independent",
2020
"Topic :: Scientific/Engineering",

0 commit comments

Comments
 (0)