-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from miguelcarcamov/development
Development
- Loading branch information
Showing
28 changed files
with
284 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,4 +128,4 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
!/src/selfcalframework/_version.py | ||
!/src/snow/_version.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
FROM ghcr.io/miguelcarcamov/selfcalframework:base | ||
FROM ghcr.io/miguelcarcamov/snow:base | ||
|
||
RUN python3 --version | ||
RUN pip3 --version | ||
RUN echo "Installing selfcalframework" | ||
RUN pip3 install git+https://github.com/miguelcarcamov/selfcalframework.git | ||
RUN echo "Hello from selfcalframework production image" | ||
LABEL org.opencontainers.image.source="https://github.com/miguelcarcamov/selfcalframework" | ||
RUN echo "Installing snow" | ||
RUN pip3 install git+https://github.com/miguelcarcamov/snow.git | ||
RUN echo "Hello from snow production image" | ||
LABEL org.opencontainers.image.source="https://github.com/miguelcarcamov/snow" | ||
LABEL org.opencontainers.image.description="Container image for SNOW" | ||
LABEL org.opencontainers.image.licenses=GPL3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import time | ||
|
||
datapath = ["~/.casa/data"] | ||
rundata = "~/.casa/data/rsync" | ||
logfile = 'casalog-%s.log' % time.strftime("%Y%m%d-%H", time.localtime()) | ||
telemetry_enabled = True | ||
crashreporter_enabled = True | ||
nologfile = False | ||
log2term = True | ||
nologger = True | ||
nogui = False | ||
colors = "LightBG" | ||
agg = False | ||
pipeline = False | ||
iplog = True | ||
user_site = False | ||
telemetry_log_directory = "/tmp" | ||
telemetry_log_limit = 20000 | ||
telemetry_log_size_interval = 60 | ||
telemetry_submit_interval = 604800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ requires = ["setuptools>=62.6.0", "setuptools-scm", "wheel"] | |
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "selfcalframework" | ||
name = "snow" | ||
authors = [ | ||
{name = "Miguel Cárcamo", email = "[email protected]"}, | ||
] | ||
|
@@ -25,8 +25,8 @@ Source = "https://github.com/miguelcarcamov/selfcalframework" | |
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
include = ["selfcalframework*"] | ||
include = ["snow*"] | ||
namespaces = false | ||
|
||
[tool.setuptools_scm] | ||
write_to = "src/selfcalframework/_version.py" | ||
write_to = "src/snow/_version.py" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
almatasks==1.5.2 | ||
astropy==5.1 | ||
casadata==2022.1.17 | ||
casampi==0.5.0 | ||
casaplotms==1.6.2 | ||
casaplotserver==1.2.1 | ||
casashell==6.5.0.15 | ||
casatasks==6.5.0.15 | ||
casatestutils==6.5.0.15 | ||
casatools==6.5.0.15 | ||
casaviewer==1.5.2 | ||
casadata==2022.9.5 | ||
casampi==0.5.01 | ||
casaplotms==1.8.7 | ||
casaplotserver==1.4.6 | ||
casashell==6.5.2.26 | ||
casatasks==6.5.2.26 | ||
casatestutils==6.5.2.26 | ||
casatools==6.5.2.26 | ||
casaviewer==1.6.6 | ||
numpy==1.22.4 | ||
reproject==0.9 | ||
scipy==1.8.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.