Skip to content

Commit db1594b

Browse files
authored
## [6.0.2] - 2025-07-12
Backport fix to avoid numpy version change before v7.0.0 release ### Changed - changed numpy version pin to be 'numpy>=1.23.5'
1 parent f84a247 commit db1594b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ 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.2] - 2025-07-12
8+
Backport fix to avoid numpy version change before v7.0.0 release
9+
### Changed
10+
- changed numpy version pin to be 'numpy>=1.23.5'
11+
712
## [6.0.1] - 2025-06-24
813
Backport release of various small fixes and typo corrections
914
### Added

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.1"
117+
version = "6.0.2"
118118
# The full version, including alpha/beta/rc tags.
119-
release = "6.0.1"
119+
release = "6.0.2"
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.1"
25+
__version__ = "6.0.2"
2626

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

0 commit comments

Comments
 (0)