Skip to content

Commit

Permalink
Merge branch 'main' into schedtel-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
WWGolay authored Nov 21, 2023
2 parents 732b0f4 + af1382e commit 7fff80f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,9 @@
}
}
}
}

},
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
}
}
8 changes: 8 additions & 0 deletions pyscope/observatory/simulator_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ def __init__(self):
stdout=subprocess.DEVNULL,
shell=True,
)
elif platform.system() == "Linux":
self.process = subprocess.Popen(
("sudo " + dirname + "/ascom.alpaca.simulators"),
start_new_session=True,
stderr=subprocess.DEVNULL,
stdout=subprocess.DEVNULL,
shell=True,
)
else:
self.process = subprocess.Popen(
(dirname + "/ascom.alpaca.simulators"),
Expand Down
1 change: 1 addition & 0 deletions pyscope/reduction/calib_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from ..observatory import AstrometryNetWCS
from .ccd_calib import ccd_calib


logger = logging.getLogger(__name__)


Expand Down

0 comments on commit 7fff80f

Please sign in to comment.