Skip to content

Commit 059b5bf

Browse files
authored
REL: 0.9.0 (#270)
* REL: 0.9.0
1 parent 3d7a2ad commit 059b5bf

13 files changed

+14
-15
lines changed

CITATION.cff

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cff-version: 1.0.3
44
message: If you use this software, please cite it using these metadata.
55
# FIXME title as repository name might not be the best name, please make human readable
6-
title: 'openradar/xradar: xradar v0.8.0'
6+
title: 'openradar/xradar: xradar v0.9.0'
77
doi: 10.5281/zenodo.7091737
88
# FIXME splitting of full names is error prone, please check if given/family name are correct
99
authors:
@@ -36,7 +36,7 @@ authors:
3636
affiliation: Federal Office of Meteorology and Climatology MeteoSwiss
3737
orcid: https://orcid.org/0009-0006-1419-0556
3838

39-
version: 0.8.0
40-
date-released: 2024-11-04
39+
version: 0.9.0
40+
date-released: 2025-02-07
4141
repository-code: https://github.com/openradar/xradar
4242
license: MIT

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022-2024, Open Radar Community Developers
3+
Copyright (c) 2022-2025, Open Radar Community Developers
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/history.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# History
22

3-
## 0.8.1 (Unreleased)
3+
## 0.9.0 (2025-02-07)
44

55
* ENH: Adding test to `open_datatree` function for all backends. Adding "scan_name" to nexradlevel2 datatree attributes ({pull}`238`) by [@aladinor](https://github.com/aladinor)
66
* FIX: Improving performance of `open_nexradlevel2_datatree` function and adding tests for `sweep` parameter. ({issue}`239`) ({pull}`240`) by [@aladinor](https://github.com/aladinor)

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ classifiers=[
1818
"Natural Language :: English",
1919
"Operating System :: OS Independent",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
2423
"Programming Language :: Python :: 3.12",

tests/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2022, openradar developers.
2+
# Copyright (c) 2022-2025, openradar developers.
33
# Distributed under the MIT License. See LICENSE for more info.
44

55
"""Unit test package for xradar."""

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2022-2024, openradar developers.
2+
# Copyright (c) 2022-2025, openradar developers.
33
# Distributed under the MIT License. See LICENSE for more info.
44
import os.path
55

tests/io/test_furuno.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2023, openradar developers.
2+
# Copyright (c) 2023-2024, openradar developers.
33
# Distributed under the MIT License. See LICENSE for more info.
44

55
"""Tests for `io.backends.furuno` module.

tests/io/test_io.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2022-2024, openradar developers.
2+
# Copyright (c) 2022-2025, openradar developers.
33
# Distributed under the MIT License. See LICENSE for more info.
44

55
"""Tests for `io` module."""

tests/io/test_iris.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2023-2024, openradar developers.
2+
# Copyright (c) 2023-2025, openradar developers.
33
# Distributed under the MIT License. See LICENSE for more info.
44

55
"""Tests for `io.backends.iris` module.

tests/io/test_nexrad_level2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2024, openradar developers.
2+
# Copyright (c) 2024-2025, openradar developers.
33
# Distributed under the MIT License. See LICENSE for more info.
44

55
"""Tests for `xradar.io.nexrad_archive` module."""

tests/io/test_rainbow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2023, openradar developers.
2+
# Copyright (c) 2023-2024, openradar developers.
33
# Distributed under the MIT License. See LICENSE for more info.
44

55
"""Tests for `io.backends.rainbow` module.

xradar/io/backends/iris.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2022-2024, openradar developers.
2+
# Copyright (c) 2022-2025, openradar developers.
33
# Distributed under the MIT License. See LICENSE for more info.
44

55

xradar/io/backends/nexrad_level2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
# Copyright (c) 2024, openradar developers.
2+
# Copyright (c) 2024-2025, openradar developers.
33
# Distributed under the MIT License. See LICENSE for more info.
44

55
"""

0 commit comments

Comments
 (0)