wintertoo 1.3.0__tar.gz → 1.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of wintertoo might be problematic. Click here for more details.
- {wintertoo-1.3.0 → wintertoo-1.3.1}/PKG-INFO +1 -1
- {wintertoo-1.3.0 → wintertoo-1.3.1}/pyproject.toml +1 -1
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/models/image.py +2 -2
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo.egg-info/PKG-INFO +1 -1
- {wintertoo-1.3.0 → wintertoo-1.3.1}/.github/dependabot.yml +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/.github/workflows/automerge.yml +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/.github/workflows/black.yml +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/.github/workflows/continuous_integration.yml +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/.github/workflows/isort.yml +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/.github/workflows/pylint.yml +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/.gitignore +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/.pre-commit-config.yaml +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/LICENSE +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/README.md +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/setup.cfg +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/tests/test_fields.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/tests/test_schedule.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/tests/testdata/test_schedule.json +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/__init__.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/data/__init__.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/data/observing_request_schema.json +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/data/summer_fields.txt +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/data/winter_fields.txt +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/database.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/errors.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/fields.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/models/__init__.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/models/program.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/models/too.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/schedule.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/submit.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/utils.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo/validate.py +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo.egg-info/SOURCES.txt +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo.egg-info/dependency_links.txt +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo.egg-info/requires.txt +0 -0
- {wintertoo-1.3.0 → wintertoo-1.3.1}/wintertoo.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wintertoo
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Author-email: Robert Stein <rdstein@caltech.edu>, Danielle Frostig <frostig@mit.edu>, Viraj Karambelkar <viraj@astro.caltech.edu>
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: homepage, https://github.com/winter-telescope/wintertoo
|
|
@@ -31,13 +31,13 @@ class ProgramImageQuery(BaseModel):
|
|
|
31
31
|
)
|
|
32
32
|
start_date: int = Field(
|
|
33
33
|
title="Start date for images",
|
|
34
|
-
le=get_date(Time.now()),
|
|
34
|
+
le=get_date(Time.now() + 1 * u.day),
|
|
35
35
|
default=get_date(Time.now() - 30.0 * u.day),
|
|
36
36
|
examples=[get_date(Time.now() - 30.0 * u.day), "20230601"],
|
|
37
37
|
)
|
|
38
38
|
end_date: int = Field(
|
|
39
39
|
title="End date for images",
|
|
40
|
-
le=get_date(Time.now()),
|
|
40
|
+
le=get_date(Time.now() + 1 * u.day),
|
|
41
41
|
default=get_date(Time.now()),
|
|
42
42
|
examples=[get_date(Time.now() - 30.0 * u.day), get_date(Time.now())],
|
|
43
43
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wintertoo
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Author-email: Robert Stein <rdstein@caltech.edu>, Danielle Frostig <frostig@mit.edu>, Viraj Karambelkar <viraj@astro.caltech.edu>
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: homepage, https://github.com/winter-telescope/wintertoo
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|