Skip to content

Commit

Permalink
solved not valid forced pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorgedavyd committed Nov 17, 2024
1 parent 2295c58 commit e028f9f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
id: extract_tag
run: echo "TAG_NAME=$(echo $GITHUB_REF | cut -d/ -f3)" >> $GITHUB_ENV

- name: Update version in setup.py and corkit/_version.py
- name: Update version in setup.py and corkit/__init__.py
run: |
sed -i "s/{{VERSION_PLACEHOLDER}}/${{ env.TAG_NAME }}/g" corkit/_version.py
sed -i "s/{{VERSION_PLACEHOLDER}}/${{ env.TAG_NAME }}/g" corkit/__init__.py
- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div align="center">
<h1>CorKit</h1>
<p>
<img src="source/logo.png" align="center" alt="Logo" />
<img src="docs/source/logo.png" align="center" alt="Logo" />
</p>
<p>
Coronagraph Science Kit
Expand Down
2 changes: 0 additions & 2 deletions corkit/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@
from numpy.typing import NDArray
from .utils import deprecation, DEFAULT_SAVE_DIR
import torch
import torchvision.transforms as tt
from astropy.visualization import ImageNormalize, HistEqStretch
import os
from torch.nn.functional import interpolate
from . import __version__
from matplotlib import pyplot as plt


def transforms():
Expand Down
15 changes: 13 additions & 2 deletions docs/RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Library Name Release Notes
# CorKit Release Notes

## 1.0.12 - 2024-04-16

Expand Down Expand Up @@ -91,7 +91,18 @@

---

## 1.1.0 - 2024-??-??
## 1.0.16 - 2024-04-22

### Fixed
- corkit/lasco.py level_1 (function)
- Cache optimization on multiple file handling.

### Contributors
- [Jorge Enciso](https://github.com/Jorgedavyd)

---

## 1.1.0 - ????-??-??

### Added
- corkit/secchi.py (level_05, level_1) tuple[function, function]
Expand Down

0 comments on commit e028f9f

Please sign in to comment.