Skip to content

Commit 86130f4

Browse files
authored
Merge pull request #7 from lsst-sssc/feature/add_mpc_explorer
Add support for adding Targets via MPC Explorer API
2 parents d1dd991 + c910053 commit 86130f4

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.copier-answers.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Changes here will be overwritten by Copier
2-
_commit: v2.0.4
2+
_commit: v2.0.5
33
_src_path: gh:lincc-frameworks/python-project-template
4-
author_email: tlister@lco.global
5-
author_name: SSSC Software
4+
author_email: fomo@lco.global
5+
author_name: SSSC FOMO Software Developers
66
create_example_module: true
77
custom_install: true
88
enforce_style:

.github/workflows/publish-benchmarks-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ jobs:
5050
comment-id: ${{ steps.find-comment.outputs.comment-id }}
5151
issue-number: ${{ steps.pr-info.outputs.pr }}
5252
body-path: output
53-
edit-mode: replace
53+
edit-mode: replace

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ coverage.xml
6161
local_settings.py
6262
db.sqlite3
6363
db.sqlite3-journal
64+
fomo_db.sqlite3
65+
fomo_db.sqlite3-journal
6466

6567
# Flask stuff:
6668
instance/

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ classifiers = [
1717
dynamic = ["version"]
1818
requires-python = ">=3.9"
1919
dependencies = [
20-
"tomtoolkit",
20+
"tomtoolkit>=2.23.1",
2121
"tom_alertstreams",
2222
"tom_fink"
2323
]

src/fomo/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
DATABASES = {
109109
'default': {
110110
'ENGINE': 'django.db.backends.sqlite3',
111-
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
111+
'NAME': os.path.join(BASE_DIR, 'fomo_db.sqlite3'),
112112
}
113113
}
114114

@@ -291,9 +291,9 @@
291291

292292
TOM_HARVESTER_CLASSES = [
293293
'tom_catalogs.harvesters.simbad.SimbadHarvester',
294-
'tom_catalogs.harvesters.ned.NEDHarvester',
295294
'tom_catalogs.harvesters.jplhorizons.JPLHorizonsHarvester',
296295
'tom_catalogs.harvesters.tns.TNSHarvester',
296+
'tom_catalogs.harvesters.mpc.MPCExplorerHarvester',
297297
]
298298

299299
HARVESTERS = {'TNS': {'api_key': ''}}

0 commit comments

Comments
 (0)