File tree Expand file tree Collapse file tree 7 files changed +7
-10
lines changed Expand file tree Collapse file tree 7 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 34
34
# Install GMT and other required dependencies from conda-forge
35
35
- name : Install dependencies
36
36
run : |
37
- conda install conda-forge/label/dev:: gmt=6.2.0rc2 \
37
+ conda install gmt=6.2.0 \
38
38
numpy pandas xarray netCDF4 packaging matplotlib
39
39
40
40
# Install the package that we want to test
Original file line number Diff line number Diff line change 66
66
# Install GMT and other required dependencies from conda-forge
67
67
- name : Install dependencies
68
68
run : |
69
- conda install conda-forge/label/dev::gmt=6.2.0rc2 \
70
- numpy pandas xarray netCDF4 packaging \
69
+ conda install gmt=6.2.0 numpy pandas xarray netCDF4 packaging \
71
70
ipython make myst-parser \
72
71
sphinx sphinx-copybutton sphinx-gallery sphinx_rtd_theme
73
72
Original file line number Diff line number Diff line change 89
89
# Install GMT and other required dependencies from conda-forge
90
90
- name : Install dependencies
91
91
run : |
92
- conda install conda-forge/label/dev::gmt=6.2.0rc2 \
93
- numpy=${{ matrix.numpy-version }} \
92
+ conda install gmt=6.2.0 numpy=${{ matrix.numpy-version }} \
94
93
pandas xarray netCDF4 packaging \
95
94
${{ matrix.optional-packages }} \
96
95
codecov coverage[toml] dvc ipython make \
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Which GMT?
62
62
PyGMT requires Generic Mapping Tools (GMT) version 6 as a minimum, which is the
63
63
latest released version that can be found at
64
64
the `GMT official site <https://www.generic-mapping-tools.org >`__.
65
- We need the latest GMT (>=6.1.1 ) since there are many changes being made to GMT
65
+ We need the latest GMT (>=6.2.0 ) since there are many changes being made to GMT
66
66
itself in response to the development of PyGMT, mainly the new
67
67
`modern execution mode <https://docs.generic-mapping-tools.org/latest/cookbook/introduction.html#modern-and-classic-mode >`__.
68
68
Original file line number Diff line number Diff line change 1
1
name : pygmt
2
2
channels :
3
- - conda-forge/label/dev
4
3
- conda-forge
5
4
- defaults
6
5
dependencies :
7
6
# Required dependencies
8
7
- pip
9
- - gmt=6.2.0rc2
8
+ - gmt=6.2.0
10
9
- numpy>=1.17
11
10
- pandas
12
11
- xarray
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ class Session:
123
123
"""
124
124
125
125
# The minimum version of GMT required
126
- required_version = "6.1.1 "
126
+ required_version = "6.2.0 "
127
127
128
128
@property
129
129
def session_pointer (self ):
Original file line number Diff line number Diff line change @@ -750,7 +750,7 @@ def test_get_default():
750
750
with clib .Session () as lib :
751
751
assert lib .get_default ("API_GRID_LAYOUT" ) in ["rows" , "columns" ]
752
752
assert int (lib .get_default ("API_CORES" )) >= 1
753
- assert Version (lib .get_default ("API_VERSION" )) >= Version ("6.1.1 " )
753
+ assert Version (lib .get_default ("API_VERSION" )) >= Version ("6.2.0 " )
754
754
755
755
756
756
def test_get_default_fails ():
You can’t perform that action at this time.
0 commit comments