File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 38
38
# Install GMT and other required dependencies from conda-forge
39
39
- name : Install dependencies
40
40
run : |
41
- mamba install gmt=6.3 .0 numpy pandas xarray netCDF4 packaging \
41
+ mamba install gmt=6.4 .0 numpy pandas xarray netCDF4 packaging \
42
42
build
43
43
44
44
# Install the package that we want to test
Original file line number Diff line number Diff line change 70
70
# Install GMT and other required dependencies from conda-forge
71
71
- name : Install dependencies
72
72
run : |
73
- mamba install gmt=6.3 .0 numpy pandas xarray netCDF4 packaging \
73
+ mamba install gmt=6.4 .0 numpy pandas xarray netCDF4 packaging \
74
74
build ipython make myst-parser geopandas \
75
75
sphinx sphinx-copybutton sphinx-design sphinx-gallery sphinx_rtd_theme
76
76
Original file line number Diff line number Diff line change 90
90
# Install GMT and other required dependencies from conda-forge
91
91
- name : Install dependencies
92
92
run : |
93
- mamba install gmt=6.3 .0 numpy=${{ matrix.numpy-version }} \
93
+ mamba install gmt=6.4 .0 numpy=${{ matrix.numpy-version }} \
94
94
pandas xarray netCDF4 packaging \
95
95
${{ matrix.optional-packages }} \
96
96
build dvc make pytest>=6.0 \
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ Compatibility with GMT/Python/NumPy versions
233
233
- NumPy
234
234
* - `Dev <https://github.com/GenericMappingTools/pygmt/milestone/9 >`_ (upcoming release)
235
235
- `Dev Documentation <https://www.pygmt.org/dev >`_ (reflects `main branch <https://github.com/GenericMappingTools/pygmt >`_)
236
- - >=6.3 .0
236
+ - >=6.4 .0
237
237
- >=3.8
238
238
- >=1.20
239
239
* - `v0.7.0 <https://github.com/GenericMappingTools/pygmt/releases/tag/v0.7.0 >`_ (latest release)
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ Which GMT?
80
80
PyGMT requires Generic Mapping Tools (GMT) version 6 as a minimum, which is the
81
81
latest released version that can be found at
82
82
the `GMT official site <https://www.generic-mapping-tools.org >`__.
83
- We need the latest GMT (>=6.3 .0) since there are many changes being made to GMT
83
+ We need the latest GMT (>=6.4 .0) since there are many changes being made to GMT
84
84
itself in response to the development of PyGMT, mainly the new
85
85
:gmt-docs: `modern execution mode <cookbook/introduction.html#modern-and-classic-mode> `.
86
86
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ channels:
5
5
dependencies :
6
6
# Required dependencies
7
7
- pip
8
- - gmt=6.3 .0
8
+ - gmt=6.4 .0
9
9
- numpy>=1.20
10
10
- pandas
11
11
- xarray
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ class Session:
125
125
"""
126
126
127
127
# The minimum version of GMT required
128
- required_version = "6.3 .0"
128
+ required_version = "6.4 .0"
129
129
130
130
@property
131
131
def session_pointer (self ):
Original file line number Diff line number Diff line change @@ -847,7 +847,7 @@ def test_get_default():
847
847
with clib .Session () as lib :
848
848
assert lib .get_default ("API_GRID_LAYOUT" ) in ["rows" , "columns" ]
849
849
assert int (lib .get_default ("API_CORES" )) >= 1
850
- assert Version (lib .get_default ("API_VERSION" )) >= Version ("6.3 .0" )
850
+ assert Version (lib .get_default ("API_VERSION" )) >= Version ("6.4 .0" )
851
851
852
852
853
853
def test_get_default_fails ():
You can’t perform that action at this time.
0 commit comments