Skip to content

Commit

Permalink
version management
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorgedavyd committed Apr 22, 2024
1 parent eafe8cc commit ef0fa25
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 12 deletions.
3 changes: 1 addition & 2 deletions corkit/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@
import asyncio
import os
from dataclasses import dataclass
import corkit

__version__ = corkit.__version__
from corkit import __version__

__all__ = ["update", "CorKitDatasets"]

Expand Down
3 changes: 1 addition & 2 deletions corkit/lasco.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@
import copy
import glob
import os
import corkit

__version__ = corkit.__version__
from corkit import __version__

__all__ = ["level_1", "CME", "LASCOplot", "downloader", "c3_calibrate", "c2_calibrate"]

Expand Down
3 changes: 1 addition & 2 deletions corkit/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
import numpy as np
from torch import nn
from corkit.utils import deprecation
import corkit

__version__ = corkit.__version__
from corkit import __version__


def image_reconstruction(img: np.array):
Expand Down
3 changes: 1 addition & 2 deletions corkit/secchi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

import numpy as np
from corkit.utils import FITS
import corkit

version = corkit.__version__
from corkit import __version__

# class downloader():

Expand Down
3 changes: 1 addition & 2 deletions corkit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@
import warnings
import glob
import os
import corkit

__version__ = corkit.__version__
from corkit import __version__

radeg = 180 / np.pi

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
import subprocess
import sys
import os
from corkit._version import __version__

from corkit import __version__

from pathlib import Path

Expand Down

0 comments on commit ef0fa25

Please sign in to comment.