We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Here are the modifications we made with the filewatcher to make it work in my machine (mac).
1) the requirements.txt I used is this:
Note: I used python 3.9
silx==1.1.2 pyFAI==2023.9.0 h5py==3.9.0 fabio==2023.6.0 numpy==1.26.4 Pillow==10.0.1 scipy==1.13.0 tiled[all]==0.1.0a116 matplotlib==3.8.0 pyyaml==6.0.1 python-dotenv==1.0.0 prefect==2.13.4 astropy==5.3.4 gpcam==8.1.7 BaselineRemoval==0.1.6 griffe >= 0.49.0, <1.0.0
2) In file_watcher.py, commenting out line 26 and lines 37-43.
line 26: # # parameters = JSON.load("2017-10-17-gisaxs-horizontal-cut").value
# # parameters = JSON.load("2017-10-17-gisaxs-horizontal-cut").value
lines 37-43:
# parameters["input_uri_data"] = input_file_uri # logger.info(f"Scheduling flows with {input_file_uri}") # await _schedule( # deployment_name="horizontal_cut_automatic_fit/automatic_cut_and_fit", # flow_run_name=input_file_uri, # parameters=parameters, # )
3) In file_handling.py, changing line 288 from if scan_filepath(".edf"): to if scan_filepath.endswith(".edf"):
if scan_filepath(".edf"):
if scan_filepath.endswith(".edf"):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here are the modifications we made with the filewatcher to make it work in my machine (mac).
1) the requirements.txt I used is this:
Note: I used python 3.9
2) In file_watcher.py, commenting out line 26 and lines 37-43.
line 26:
# # parameters = JSON.load("2017-10-17-gisaxs-horizontal-cut").value
lines 37-43:
3) In file_handling.py, changing line 288 from
if scan_filepath(".edf"):
toif scan_filepath.endswith(".edf"):
The text was updated successfully, but these errors were encountered: