Skip to content

Commit

Permalink
version 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kristinemlarson committed Oct 2, 2024
1 parent 1a9f6e3 commit 73dfeb0
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
env
developer_notes.md
new.pyproject.toml
meson.build
set_simulator*py
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## 3.8.0

Changed our build to meson. This will now accommodate python >= 3.11.
It also eliminates the setup tool deprecation.

Why we did this: https://numpy.org/doc/stable/reference/distutils_status_migration.html

## 3.7.0
I have been trying to make a way to save frequently used settings in rinex2snr and gnssir,
especially the snr ending, and to a lesser extent, the samplerate.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# gnssrefl v3.7.0
# gnssrefl v3.8.0

gnssrefl is an open source software package for GNSS Interferometric Reflectometry (GNSS-IR).
When citing gnssrefl, please use:
Expand Down
10 changes: 10 additions & 0 deletions developer_notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# from tim
I'm always happy to help, but in the future-- you can always build a new image if you want to test on your own.

from your gnssrefl directory (that has the Dockerfile):
docker build --no-cache -t <imagename> .
docker run -it <imagename> /bin/bash
If you want to mount volumes you could copy the -v syntax from the unavdocker/gnssrefl docker run command.



# disutils - change to meson

https://numpy.org/doc/stable/reference/distutils_status_migration.html
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "mesonpy"

[project]
name = "gnssrefl"
version = "3.7.0"
version = "3.8.0"
description = "A GNSS reflectometry software package "
readme = "README.md"
maintainers = [
Expand Down

0 comments on commit 73dfeb0

Please sign in to comment.