Skip to content

Commit

Permalink
Merge pull request #306 from SuperDARN/release/3.1.1
Browse files Browse the repository at this point in the history
Patch Release: v3.1.1
  • Loading branch information
carleyjmartin committed Mar 24, 2023
2 parents 89c05a2 + a4faefb commit 9766eb6
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 97 deletions.
8 changes: 6 additions & 2 deletions README.md
Expand Up @@ -9,9 +9,13 @@ Python data visualization library for the Super Dual Auroral Radar Network (Supe

## Changelog

## Version 3.1 - Release!
## Version 3.1.1 - Patch Release!

pyDARN release v3.1 includes the following features:
This patch release includes:
- **Bug fix** `hdw` repository installation issues resolved
- Inclusion of ICE and ICW in `hdw` repository and superdarn_radars module

Most recent minor release (3.1.0) changes listed below:
- Full Cartopy coastline plotting options for all spatial plots
- **NEW** `coastline` keyword in method calls
- Full Cartopy integration for plotting in geographic coordinates for grid and fan plots
Expand Down
2 changes: 1 addition & 1 deletion pydarn/utils/hdw
Submodule hdw updated 2 files
+12 −0 hdw.dat.ice
+12 −0 hdw.dat.icw
5 changes: 5 additions & 0 deletions pydarn/utils/superdarn_radars.py
Expand Up @@ -13,6 +13,7 @@
# Modifications:
# 2022-02-11 MTS USASK updated the _HDW_info class to take in
# the hardware format
# 2023-01-21 CJM Added ICE and ICW defaults and hdw link
"""
This module contains SuperDARN radar information
"""
Expand Down Expand Up @@ -490,6 +491,10 @@ class SuperDARNRadars():
Hemisphere.North, 110, read_hdw_file('hok')),
41: _Radar('Hokkaido West', 'Nagoya University',
Hemisphere.North, 110, read_hdw_file('hkw')),
211: _Radar('Iceland East', 'Dartmouth College',
Hemisphere.North, 100, read_hdw_file('ice')),
210: _Radar('Iceland West', 'Dartmouth College',
Hemisphere.North, 100, read_hdw_file('icw')),
64: _Radar('Inuvik', 'University of Saskatchewan',
Hemisphere.North, 75, read_hdw_file('inv')),
50: _Radar('Jiamusi East radar',
Expand Down
2 changes: 1 addition & 1 deletion pydarn/version.py
Expand Up @@ -17,4 +17,4 @@
This file contains the version number of pydarn
"""

__version__='3.1'
__version__='3.1.1'
3 changes: 3 additions & 0 deletions pyproject.toml
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
30 changes: 30 additions & 0 deletions setup.cfg
@@ -1,2 +1,32 @@
[metadata]
license_files = LICENSE
name = pydarn
version = attr: pydarn.version.__version__
author = SuperDARN Data Visualization Working Group
long_description = file: README.md
long_description_content_type = text/markdown
description = Data visualization library for SuperDARN data
url = https://pydarn.readthedocs.io/en/latest/
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7

[options]
python_requires = >=3.6
packages = find_namespace:
include_package_data = True
install_requires =
pyyaml
numpy
matplotlib>=3.3.4
aacgmv2
pydarnio>=1.1.0

[options.packages.find]
exclude =
test*
test_files*
docs*
build*
93 changes: 0 additions & 93 deletions setup.py

This file was deleted.

0 comments on commit 9766eb6

Please sign in to comment.