From fc95bc105b22a9ec9cd38e674bbea324c301895a Mon Sep 17 00:00:00 2001 From: Joey Chatelain Date: Thu, 23 Jan 2025 10:20:27 -0800 Subject: [PATCH 1/3] add a name to the planet return dictionary --- simbad2k/planets.json | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/simbad2k/planets.json b/simbad2k/planets.json index 15b2787..4f5ba8d 100644 --- a/simbad2k/planets.json +++ b/simbad2k/planets.json @@ -7,7 +7,8 @@ "argument_of_perihelion": 29.19120826459077, "ascending_node": 48.30099247760661, "mean_daily_motion": 4.092346380325095, - "epoch_jd": 2460181.5 + "epoch_jd": 2460181.5, + "name": "Mercury" }, "venus": { "semimajor_axis": 0.7233394993783024, @@ -17,7 +18,8 @@ "argument_of_perihelion": 54.98273517821931, "ascending_node": 76.61383887174399, "mean_daily_motion": 1.602106319741148, - "epoch_jd": 2460181.5 + "epoch_jd": 2460181.5, + "name": "Venus" }, "mars": { "semimajor_axis": 1.523697529195890, @@ -27,7 +29,8 @@ "argument_of_perihelion": 286.6396041587725, "ascending_node": 49.48984370080841, "mean_daily_motion": 0.5240298172661463, - "epoch_jd": 2460181.5 + "epoch_jd": 2460181.5, + "name": "Mars" }, "jupiter": { "semimajor_axis": 5.203501815132350, @@ -37,7 +40,8 @@ "argument_of_perihelion": 273.6755601807570, "ascending_node": 100.5313644889547, "mean_daily_motion": 0.08307449251445106, - "epoch_jd": 2460181.5 + "epoch_jd": 2460181.5, + "name": "Jupiter" }, "saturn": { "semimajor_axis": 9.571070445959165, @@ -47,7 +51,8 @@ "argument_of_perihelion": 335.6768377854934, "ascending_node": 113.5533514314662, "mean_daily_motion": 0.03329088647694878, - "epoch_jd": 2460181.5 + "epoch_jd": 2460181.5, + "name": "Saturn" }, "uranus": { "semimajor_axis": 19.29708529727467, @@ -57,7 +62,8 @@ "argument_of_perihelion": 91.37491162290534, "ascending_node": 74.03695443119472, "mean_daily_motion": 0.01162722238867712, - "epoch_jd": 2460181.5 + "epoch_jd": 2460181.5, + "name": "Uranus" }, "neptune": { "semimajor_axis": 30.28612737025333, @@ -67,6 +73,7 @@ "argument_of_perihelion": 256.1860270984464, "ascending_node": 131.6333867463142, "mean_daily_motion": 0.005913568620118722, - "epoch_jd": 2460181.5 + "epoch_jd": 2460181.5, + "name": "Neptune" } } From c0676b7a4023a4d01478cf5ce9491037a54d37e3 Mon Sep 17 00:00:00 2001 From: Joey Chatelain Date: Thu, 23 Jan 2025 10:32:48 -0800 Subject: [PATCH 2/3] depicate python 3.8 --- .github/workflows/canary_tests.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/canary_tests.yaml b/.github/workflows/canary_tests.yaml index 00719ea..9de7df4 100644 --- a/.github/workflows/canary_tests.yaml +++ b/.github/workflows/canary_tests.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10"] steps: - name: Check out repository uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index 176e0b1..cc57e53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ classifiers=[ "Intended Audience :: Science/Research", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering :: Astronomy", "Topic :: Scientific/Engineering :: Physics" ] From 203a5670f5d854eb1fa9013e382950d82aaee384 Mon Sep 17 00:00:00 2001 From: Joey Chatelain Date: Thu, 23 Jan 2025 10:35:40 -0800 Subject: [PATCH 3/3] don't test for python 3.8 --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 02db96e..7884b51 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10"] steps: - name: Check out repository uses: actions/checkout@v2