winterapi 1.3.0__tar.gz → 1.4.0__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.
Files changed (36) hide show
  1. {winterapi-1.3.0/winterapi.egg-info → winterapi-1.4.0}/PKG-INFO +4 -4
  2. {winterapi-1.3.0 → winterapi-1.4.0}/pyproject.toml +7 -4
  3. {winterapi-1.3.0 → winterapi-1.4.0}/tests/testdata/test_schedule.csv +6 -6
  4. {winterapi-1.3.0 → winterapi-1.4.0/winterapi.egg-info}/PKG-INFO +4 -4
  5. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi.egg-info/requires.txt +3 -3
  6. {winterapi-1.3.0 → winterapi-1.4.0}/.github/dependabot.yml +0 -0
  7. {winterapi-1.3.0 → winterapi-1.4.0}/.github/workflows/automerge.yml +0 -0
  8. {winterapi-1.3.0 → winterapi-1.4.0}/.github/workflows/black.yml +0 -0
  9. {winterapi-1.3.0 → winterapi-1.4.0}/.github/workflows/continuous_integration.yml +0 -0
  10. {winterapi-1.3.0 → winterapi-1.4.0}/.github/workflows/isort.yml +0 -0
  11. {winterapi-1.3.0 → winterapi-1.4.0}/.github/workflows/pylint.yml +0 -0
  12. {winterapi-1.3.0 → winterapi-1.4.0}/.gitignore +0 -0
  13. {winterapi-1.3.0 → winterapi-1.4.0}/.pre-commit-config.yaml +0 -0
  14. {winterapi-1.3.0 → winterapi-1.4.0}/LICENSE +0 -0
  15. {winterapi-1.3.0 → winterapi-1.4.0}/README.md +0 -0
  16. {winterapi-1.3.0 → winterapi-1.4.0}/notebooks/Example_1_Setting_Up_Credentials.ipynb +0 -0
  17. {winterapi-1.3.0 → winterapi-1.4.0}/notebooks/Example_2_Submitting_a_ToO.ipynb +0 -0
  18. {winterapi-1.3.0 → winterapi-1.4.0}/notebooks/Example_3_Interacting_with_Observatory_Queue.ipynb +0 -0
  19. {winterapi-1.3.0 → winterapi-1.4.0}/notebooks/Example_4_Finding_Observatory_Data.ipynb +0 -0
  20. {winterapi-1.3.0 → winterapi-1.4.0}/notebooks/Example_5_Downloading_Observatory_Data.ipynb +0 -0
  21. {winterapi-1.3.0 → winterapi-1.4.0}/notebooks/Info_1_Introduction_To_Credentials.ipynb +0 -0
  22. {winterapi-1.3.0 → winterapi-1.4.0}/notebooks/Info_2a_ToO_Parameters.ipynb +0 -0
  23. {winterapi-1.3.0 → winterapi-1.4.0}/notebooks/Info_2b_Submitting_ToOs.ipynb +0 -0
  24. {winterapi-1.3.0 → winterapi-1.4.0}/setup.cfg +0 -0
  25. {winterapi-1.3.0 → winterapi-1.4.0}/tests/test_login.py +0 -0
  26. {winterapi-1.3.0 → winterapi-1.4.0}/tests/test_schedule.py +0 -0
  27. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi/__init__.py +0 -0
  28. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi/base_api.py +0 -0
  29. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi/configure_tests.py +0 -0
  30. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi/credentials.py +0 -0
  31. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi/endpoints.py +0 -0
  32. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi/fidelius.py +0 -0
  33. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi/messenger.py +0 -0
  34. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi.egg-info/SOURCES.txt +0 -0
  35. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi.egg-info/dependency_links.txt +0 -0
  36. {winterapi-1.3.0 → winterapi-1.4.0}/winterapi.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: winterapi
3
- Version: 1.3.0
3
+ Version: 1.4.0
4
4
  Author-email: Robert Stein <rdstein@caltech.edu>
5
5
  License: MIT
6
6
  Project-URL: Homepage, https://github.com/winter-telescope/winterapi
@@ -28,11 +28,11 @@ Requires-Dist: pre-commit
28
28
  Requires-Dist: jupyter
29
29
  Requires-Dist: backoff
30
30
  Requires-Dist: pydantic
31
- Requires-Dist: wintertoo>=1.5.0
31
+ Requires-Dist: wintertoo>=1.6.1
32
32
  Provides-Extra: dev
33
- Requires-Dist: black==24.2.0; extra == "dev"
33
+ Requires-Dist: black==24.4.2; extra == "dev"
34
34
  Requires-Dist: isort==5.13.2; extra == "dev"
35
- Requires-Dist: pylint==3.1.0; extra == "dev"
35
+ Requires-Dist: pylint==3.2.2; extra == "dev"
36
36
  Requires-Dist: coveralls; extra == "dev"
37
37
 
38
38
  # winterapi
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "winterapi"
7
- version = "1.3.0"
7
+ version = "1.4.0"
8
8
  description = ""
9
9
  authors = [
10
10
  {name = "Robert Stein", email = "rdstein@caltech.edu"}
@@ -36,13 +36,13 @@ dependencies = [
36
36
  "jupyter",
37
37
  "backoff",
38
38
  "pydantic",
39
- "wintertoo>=1.5.0"
39
+ "wintertoo>=1.6.1"
40
40
  ]
41
41
  [project.optional-dependencies]
42
42
  dev = [
43
- "black == 24.2.0",
43
+ "black == 24.4.2",
44
44
  "isort == 5.13.2",
45
- "pylint == 3.1.0",
45
+ "pylint == 3.2.2",
46
46
  "coveralls",
47
47
  ]
48
48
 
@@ -89,3 +89,6 @@ disable=["logging-fstring-interpolation"]
89
89
  good-names=["ax", "ra", "df", "pi", "i"]
90
90
  exclude-too-few-public-methods=["pydantic.*"]
91
91
  extension-pkg-whitelist=["pydantic"]
92
+
93
+ [tool.pylint.typecheck]
94
+ generated-members=["u.*"]
@@ -1,7 +1,7 @@
1
1
  targName,raDeg,decDeg,fieldID,filter,visitExpTime,singleExpTime,priority,progPI,progName,progID,validStart,validStop,observed,maxAirmass,ditherNumber,ditherStepSize,bestDetector,obsHistID
2
- test_field,211.56398,54.0,3944,Y,300.0,33.333333333333336,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,9,30.0,True,0
3
- test_field,211.56398,54.0,3944,J,300.0,33.333333333333336,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,9,30.0,True,1
4
- test_field,211.56398,54.0,3944,Hs,300.0,33.333333333333336,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,9,30.0,True,2
5
- test_radec,210.910674637,54.3116510708,999999999,Y,300.0,37.5,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,8,30.0,True,3
6
- test_radec,210.910674637,54.3116510708,999999999,J,300.0,37.5,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,8,30.0,True,4
7
- test_radec,210.910674637,54.3116510708,999999999,Hs,300.0,37.5,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,8,30.0,True,5
2
+ test_field,211.56398,54.0,3944,Y,300.0,33.333333333333336,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,9,90.0,True,0
3
+ test_field,211.56398,54.0,3944,J,300.0,33.333333333333336,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,9,90.0,True,1
4
+ test_field,211.56398,54.0,3944,Hs,300.0,33.333333333333336,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,9,90.0,True,2
5
+ test_radec,210.910674637,54.3116510708,999999999,Y,300.0,37.5,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,8,90.0,True,3
6
+ test_radec,210.910674637,54.3116510708,999999999,J,300.0,37.5,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,8,90.0,True,4
7
+ test_radec,210.910674637,54.3116510708,999999999,Hs,300.0,37.5,50.0,Stein,2023A999,0,62721.1894969287,62722.1894969452,False,2.0,8,90.0,True,5
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: winterapi
3
- Version: 1.3.0
3
+ Version: 1.4.0
4
4
  Author-email: Robert Stein <rdstein@caltech.edu>
5
5
  License: MIT
6
6
  Project-URL: Homepage, https://github.com/winter-telescope/winterapi
@@ -28,11 +28,11 @@ Requires-Dist: pre-commit
28
28
  Requires-Dist: jupyter
29
29
  Requires-Dist: backoff
30
30
  Requires-Dist: pydantic
31
- Requires-Dist: wintertoo>=1.5.0
31
+ Requires-Dist: wintertoo>=1.6.1
32
32
  Provides-Extra: dev
33
- Requires-Dist: black==24.2.0; extra == "dev"
33
+ Requires-Dist: black==24.4.2; extra == "dev"
34
34
  Requires-Dist: isort==5.13.2; extra == "dev"
35
- Requires-Dist: pylint==3.1.0; extra == "dev"
35
+ Requires-Dist: pylint==3.2.2; extra == "dev"
36
36
  Requires-Dist: coveralls; extra == "dev"
37
37
 
38
38
  # winterapi
@@ -6,10 +6,10 @@ pre-commit
6
6
  jupyter
7
7
  backoff
8
8
  pydantic
9
- wintertoo>=1.5.0
9
+ wintertoo>=1.6.1
10
10
 
11
11
  [dev]
12
- black==24.2.0
12
+ black==24.4.2
13
13
  isort==5.13.2
14
- pylint==3.1.0
14
+ pylint==3.2.2
15
15
  coveralls
File without changes
File without changes
File without changes
File without changes
File without changes