Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 791d01c

Browse files
authored
Merge pull request #378 from GeoscienceAustralia/develop
Release 0.6.1
2 parents 8203989 + 1033836 commit 791d01c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+115
-81
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: |
6262
sudo apt update
6363
sudo apt upgrade
64-
python -m pip install -U pip wheel
64+
python -m pip install -U pip wheel setuptools==58.0
6565
- name: Install packages including openmpi
6666
if: env.PYTHONVERSION != '3.9'
6767
run: sudo apt install libhdf5-serial-dev libnetcdf13 libatlas-base-dev gfortran openmpi-bin libopenmpi-dev
@@ -101,8 +101,13 @@ jobs:
101101
pytest tests/ -m "slow"
102102
mpirun -n 3 pytest tests/test_shared.py -k test_tiles_split -s
103103
pytest --cov-config=.coveragerc --cov-report term-missing:skip-covered --cov=pyrate tests/ -m "not slow"
104+
env:
105+
OMP_NUM_THREADS: 1
104106
- name: Test Pyrate in Python ${{ matrix.python-version }} without MPI
105107
if: env.PYTHONVERSION == '3.9'
106108
run: |
107109
pytest tests/ -m "not mpi and slow"
108110
pytest --cov-config=.coveragerc --cov-report term-missing:skip-covered --cov=pyrate tests/ -m "not slow and not mpi"
111+
env:
112+
OMP_NUM_THREADS: 1
113+

docs/_build/html/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ <h1>
374374

375375
<div role="contentinfo">
376376
<p>
377-
&copy; Copyright 2021, Geoscience Australia
377+
&copy; Copyright 2022, Geoscience Australia
378378
</p>
379379
</div>
380380
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a

docs/history.rst

Lines changed: 14 additions & 0 deletions

docs/usage.rst

Lines changed: 3 additions & 1 deletion

pyrate/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This Python module is part of the PyRate software package.
22
#
3-
# Copyright 2021 Geoscience Australia
3+
# Copyright 2022 Geoscience Australia
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

pyrate/conv2tif.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This Python module is part of the PyRate software package.
22
#
3-
# Copyright 2021 Geoscience Australia
3+
# Copyright 2022 Geoscience Australia
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

pyrate/core/algorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This Python module is part of the PyRate software package.
22
#
3-
# Copyright 2021 Geoscience Australia
3+
# Copyright 2022 Geoscience Australia
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

pyrate/core/aps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This Python module is part of the PyRate software package.
22
#
3-
# Copyright 2021 Geoscience Australia
3+
# Copyright 2022 Geoscience Australia
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

pyrate/core/covariance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This Python module is part of the PyRate software package.
22
#
3-
# Copyright 2021 Geoscience Australia
3+
# Copyright 2022 Geoscience Australia
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

pyrate/core/dem_error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This Python module is part of the PyRate software package.
22
#
3-
# Copyright 2021 Geoscience Australia
3+
# Copyright 2022 Geoscience Australia
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)