Skip to content

Commit 10b833d

Browse files
Merge pull request #127 from EasyScience/hotfix
Hotfix
2 parents 5e9dba1 + 47eb806 commit 10b833d

6 files changed

+12
-10
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
## Getting Started
1616

17+
Currently, easydiffraction is in beta and has not been released on PyPI. Please use the alternative method given below to install easydiffraction from our GitHub repository.
18+
1719
### Install EasyDiffraction python library
1820

1921
* Create and go to, e.g., **easydiffraction** directory (*optional*)
@@ -31,7 +33,7 @@
3133
```
3234
* Install **easydiffraction**
3335
```
34-
pip install easydiffraction
36+
pip install easydiffraction --extra-index-url https://easyscience.github.io/pypi
3537
```
3638

3739
## Examples
@@ -42,7 +44,7 @@
4244

4345
* Install **easydiffraction**, including `charts` extras for visualization
4446
```
45-
pip install 'easydiffraction[charts]'
47+
pip install 'easydiffraction[charts]' --extra-index-url https://easyscience.github.io/pypi
4648
```
4749
* Install Jupyter Notebook
4850
```

examples/Change_minimizer.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
" print(\"Running in Google Colab\")\n",
5353
" # Install the easydiffraction library if it is not installed (including charts extras)\n",
5454
" if importlib.util.find_spec(\"easydiffraction\") is None:\n",
55-
" !pip install 'easydiffraction[charts]'\n",
55+
" !pip install 'easydiffraction[charts]' --extra-index-url https://easyscience.github.io/pypi\n",
5656
" # Download the data files to be read in notebook\n",
5757
" for fname in ['lbco.cif', 'hrpt.xye']:\n",
5858
" pooch.retrieve(\n",

examples/Fitting_PD-NEUT-CW_LBCO-HRPT.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
" print(\"Running in Google Colab\")\n",
5555
" # Install the easydiffraction library if it is not installed (including charts extras)\n",
5656
" if importlib.util.find_spec(\"easydiffraction\") is None:\n",
57-
" !pip install 'easydiffraction[charts]'\n",
57+
" !pip install 'easydiffraction[charts]' --extra-index-url https://easyscience.github.io/pypi\n",
5858
" # Download the data files to be read in notebook\n",
5959
" for fname in ['lbco.cif', 'hrpt.xye']:\n",
6060
" pooch.retrieve(\n",

examples/Fitting_PD-NEUT-TOF_NCAF-WISH.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
" print(\"Running in Google Colab\")\n",
5353
" # Install the easydiffraction library if it is not installed (including charts extras)\n",
5454
" if importlib.util.find_spec(\"easydiffraction\") is None:\n",
55-
" !pip install 'easydiffraction[charts]'\n",
55+
" !pip install 'easydiffraction[charts]' --extra-index-url https://easyscience.github.io/pypi\n",
5656
" # Download the data files to be read in notebook\n",
5757
" for fname in ['ncaf.cif', 'wish.xye']:\n",
5858
" pooch.retrieve(\n",

examples/Fitting_PD-NEUT-TOF_Si-SEPD.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
"colab"
3939
],
4040
"ExecuteTime": {
41-
"end_time": "2024-10-21T21:25:54.088976Z",
42-
"start_time": "2024-10-21T21:25:54.072841Z"
41+
"end_time": "2024-10-22T10:09:35.372871Z",
42+
"start_time": "2024-10-22T10:09:35.339954Z"
4343
}
4444
},
4545
"source": [
@@ -52,7 +52,7 @@
5252
" print(\"Running in Google Colab\")\n",
5353
" # Install the easydiffraction library if it is not installed (including charts extras)\n",
5454
" if importlib.util.find_spec(\"easydiffraction\") is None:\n",
55-
" !pip install 'easydiffraction[charts]'\n",
55+
" !pip install 'easydiffraction[charts]' --extra-index-url https://easyscience.github.io/pypi\n",
5656
" # Download the data files to be read in notebook\n",
5757
" for fname in ['sepd.xye']:\n",
5858
" pooch.retrieve(\n",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'hatchling.build'
44

55
[project]
66
name = 'easydiffraction'
7-
version = '0.1.0'
7+
version = '0.1.1'
88
description = 'Making diffraction data analysis and modelling easy'
99
authors = [{name = 'EasyDiffractionLib contributors'}]
1010
readme = 'README.md'
@@ -23,7 +23,7 @@ classifiers = [
2323
]
2424
requires-python = '>=3.9,<3.13'
2525
dependencies = [
26-
'cryspy @ git+https://github.com/ikibalin/cryspy.git@beta',
26+
'cryspy @ git+https://github.com/EasyScience/cryspy.git@beta',
2727
'EasyScience @ git+https://github.com/EasyScience/EasyScience.git@free-params',
2828
'easycrystallography @ git+https://github.com/EasyScience/EasyCrystallography.git@develop',
2929
'pycifrw>=4.4.1',

0 commit comments

Comments
 (0)