Skip to content
Open
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
5 changes: 3 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "hello world",
"container": "python",
"container": "cybergisx/python3-0.8.0",
"connector": "SingCVMFSConnector",
"pre_processing_stage": "bash lookaround.sh",
"execution_stage": "/cvmfs/cybergis.illinois.edu/software/conda/cybergisx/python3-0.9.0/bin/python pi.py",
"execution_stage": "python pi.py",
"post_processing_stage": "ls",
"slurm_input_rules": {
"time": {
Expand Down
1 change: 1 addition & 0 deletions pi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import random
import matplotlib.pyplot as plt

print(f"Random is at: {random.__file__}")
INTERVAL = 1000
Expand Down