From e4b3b66ea78751174af4cede98a8067fad02a89d Mon Sep 17 00:00:00 2001 From: "Acciarini, Giacomo (PG/R - Maths & Physics)" Date: Mon, 25 Nov 2024 09:58:38 +0100 Subject: [PATCH] another attempt that works locally --- doc/api.rst | 7 +------ dsgp4/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/doc/api.rst b/doc/api.rst index 10b659c..ce54224 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -54,10 +54,5 @@ $\partial$SGP4 API newton_method sgp4init sgp4init_batch - mldsgp4 - -.. autosummary:: - :toctree: _autosummary/ - :template: custom-class-template.rst - mldsgp4.mldsgp4 + diff --git a/dsgp4/__init__.py b/dsgp4/__init__.py index 754ae10..2e3b416 100644 --- a/dsgp4/__init__.py +++ b/dsgp4/__init__.py @@ -1,8 +1,9 @@ -__version__ = '1.0.2' +__version__ = '1.1.2' import torch torch.set_default_dtype(torch.float64) from .sgp4 import sgp4 +from .mldsgp4 import mldsgp4 from .initl import initl from .sgp4init import sgp4init from .sgp4init_batch import sgp4init_batch @@ -10,6 +11,5 @@ from .sgp4_batched import sgp4_batched from .util import propagate, initialize_tle, propagate_batch from .plot import plot_orbit, plot_tles -from .mldsgp4 import mldsgp4 from . import tle from .tle import TLE