Skip to content

Commit 62190e0

Browse files
authored
Added MPLBACKEND env variable for windows tests (#536)
* minor doc updates * added MPLBACKEND env variable for windows tests
1 parent 9844ac5 commit 62190e0

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/build_tests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ jobs:
108108
examples/
109109
sparse-checkout-cone-mode: false
110110
fetch-depth: 1
111+
- name: Set mpl backend on windows
112+
if: ${{ matrix.os == 'windows-latest' }}
113+
run: echo "MPLBACKEND=Agg" >> $env:GITHUB_ENV
114+
shell: pwsh
111115
- if: ${{ matrix.os == 'macos-latest' || matrix.os == 'macOS-13'}}
112116
run: |
113117
brew reinstall libomp
@@ -129,6 +133,10 @@ jobs:
129133
uses: actions/setup-python@v5
130134
with:
131135
python-version: ${{ matrix.python-version }}
136+
- name: Set mpl backend on windows
137+
if: ${{ matrix.os == 'windows-latest' }}
138+
run: echo "MPLBACKEND=Agg" >> $env:GITHUB_ENV
139+
shell: pwsh
132140
- if: ${{ matrix.os == 'macos-latest' || matrix.os == 'macOS-13'}}
133141
run: |
134142
brew reinstall libomp

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ Contact
6868

6969
* Katherine Klise, Sandia National Laboratories, [email protected]
7070
* Terra Haxton, US Environmental Protection Agency, [email protected]
71-
* Regan Murray, US Environmental Protection Agency, [email protected]
7271

7372
EPA Disclaimer
7473
-----------------

documentation/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Installation
88
======================================
99
.. include:: <isonum.txt>
1010

11-
WNTR requires 64-bit Python (tested on versions 3.9, 3.10, 3.11, and 3.12) along with several
11+
WNTR requires 64-bit Python (tested on versions 3.10, 3.11, 3.12, and 3.13) along with several
1212
Python package dependencies.
1313
See :ref:`requirements` for more information.
1414
WNTR can be installed as a Python package as briefly described below.
@@ -59,7 +59,7 @@ Step 1: Setup the Python environment
5959
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6060

6161
Python can be installed on Windows, Linux, and Mac OS X operating systems.
62-
WNTR requires 64-bit Python (tested on versions 3.9, 3.10, 3.11, and 3.12) along with several Python package dependencies.
62+
WNTR requires 64-bit Python (tested on versions 3.10, 3.11, 3.12, and 3.13) along with several Python package dependencies.
6363
Python distributions, such as Anaconda, are recommended to manage
6464
the Python environment. Anaconda can be downloaded from https://www.anaconda.com/products/individual.
6565
Additional instructions for setting up a Python environment independent of Anaconda are available at https://docs.python.org/.
@@ -255,7 +255,7 @@ To test WNTR, developers can run software tests locally using the following comm
255255
Requirements
256256
-------------
257257

258-
Requirements for WNTR include 64-bit Python (tested on versions 3.9, 3.10, 3.11, and 3.12) along with several Python packages.
258+
Requirements for WNTR include 64-bit Python (tested on versions 3.10, 3.11, 3.12, and 3.13) along with several Python packages.
259259
Users should have experience using Python (https://www.python.org/), including the installation of additional Python packages.
260260

261261
**The following Python packages are required**:

0 commit comments

Comments
 (0)