Skip to content

Commit 8587ddc

Browse files
committed
fixed sdist publishing issue in ci publish workflow
1 parent 361c272 commit 8587ddc

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.github/workflows/publish-to-test-and-live-pypi.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
twine check dist/*
5252
- uses: actions/upload-artifact@v4
5353
with:
54+
name: artifact-sdist-${{ hashFiles('get_spice.py') }}-${{ hashFiles('setup.cfg') }}
5455
path: dist/*.tar.gz
5556
build_wheels:
5657
strategy:

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to SpiceyPy will be documented here
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project tries to adhere to [Semantic Versioning](http://semver.org/).
66

7+
## [6.0.3] - 2025-07-17
8+
Backport fix for spice cell functions
9+
10+
### Added
11+
- Add assertions that passed-in SpiceCell is correct type for `bltfrm()`, `ckcov()`, `ckobj()`, `kplfrm()`, `spkobj()`
12+
13+
### Fixed
14+
- Corrected bug where bool was used instead of is Null for specifying return SpiceCell in `bltfrm()`, `ckcov()`, `ckobj()`, `kplfrm()`, `spkobj()`
15+
- fixed sdist publishing issue in ci publish workflow
16+
17+
718
## [6.0.2] - 2025-07-12
819
Backport fix to avoid numpy version change before v7.0.0 release
920
### Changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@
114114
# built documents.
115115
#
116116
# The short X.Y version.
117-
version = "6.0.2"
117+
version = "6.0.3"
118118
# The full version, including alpha/beta/rc tags.
119-
release = "6.0.2"
119+
release = "6.0.3"
120120

121121
# The language for content autogenerated by Sphinx. Refer to documentation
122122
# for a list of supported languages.

src/spiceypy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
SOFTWARE.
2323
"""
2424
__author__ = "AndrewAnnex"
25-
__version__ = "6.0.2"
25+
__version__ = "6.0.3"
2626

2727
from .spiceypy import *
2828
from .utils import support_types

0 commit comments

Comments
 (0)