Skip to content

Commit b6d579e

Browse files
committed
Relax numpy version constraint. Bump version to 6.0.0rc3
1 parent b51936d commit b6d579e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cff-version: 1.2.0
22
title: 'space_packet_parser'
33
type: software
4-
version: '6.0.0rc2'
4+
version: '6.0.0rc3'
55
description: A CCSDS telemetry packet decoding library based on the XTCE packet format description standard.
66
license: BSD-3-Clause
77
abstract: The Space Packet Parser Python library is a generalized, configurable packet decoding library for CCSDS telemetry

meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: "space_packet_parser"
3-
version: "6.0.0rc2"
3+
version: "6.0.0rc3"
44

55
source:
66
path: .
@@ -25,7 +25,7 @@ requirements:
2525
- click>=8.0
2626
- rich>=13.0
2727
- xarray>2024.0.0
28-
- numpy>=2.0.0
28+
- numpy>=1.20.0
2929

3030
test:
3131
imports:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "space_packet_parser"
3-
version = "6.0.0rc2"
3+
version = "6.0.0rc3"
44
description = "A CCSDS telemetry packet decoding library based on the XTCE packet format description standard."
55
license = { text = "BSD-3-Clause" }
66
readme = "README.md"
@@ -61,7 +61,7 @@ spp = "space_packet_parser.cli:spp"
6161
[project.optional-dependencies]
6262
xarray = [
6363
"xarray>2024.0.0",
64-
"numpy>=2.0.0"
64+
"numpy>=1.20.0"
6565
]
6666
examples = [
6767
"matplotlib>=3.4"
@@ -97,7 +97,7 @@ include = [
9797

9898
[tool.poetry.group.xarray.dependencies]
9999
xarray = ">2024.0.0"
100-
numpy = ">=2.0.0"
100+
numpy = ">=1.20.0"
101101

102102
[tool.poetry.group.examples.dependencies]
103103
matplotlib = ">=3.4"

0 commit comments

Comments
 (0)