File tree 8 files changed +8
-8
lines changed
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.2 .0 \
41
+ mamba install gmt=6.3 .0 \
42
42
numpy pandas xarray netCDF4 packaging matplotlib
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.2 .0 numpy pandas xarray netCDF4 packaging \
73
+ mamba install gmt=6.3 .0 numpy pandas xarray netCDF4 packaging \
74
74
ipython make myst-parser geopandas \
75
75
sphinx sphinx-copybutton sphinx-gallery sphinx_rtd_theme
76
76
Original file line number Diff line number Diff line change 93
93
# Install GMT and other required dependencies from conda-forge
94
94
- name : Install dependencies
95
95
run : |
96
- mamba install gmt=6.2 .0 numpy=${{ matrix.numpy-version }} \
96
+ mamba install gmt=6.3 .0 numpy=${{ matrix.numpy-version }} \
97
97
pandas xarray netCDF4 packaging \
98
98
${{ matrix.optional-packages }} \
99
99
dvc make pytest>=6.0 \
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ Compatibility with GMT/Python/NumPy versions
214
214
- Numpy
215
215
* - `Dev <https://github.com/GenericMappingTools/pygmt/milestone/9 >`_ (upcoming release)
216
216
- `Dev Documentation <https://www.pygmt.org/dev >`_ (reflects `main branch <https://github.com/GenericMappingTools/pygmt >`_)
217
- - >=6.2 .0
217
+ - >=6.3 .0
218
218
- >=3.7
219
219
- >=1.18
220
220
* - `v0.5.0 <https://github.com/GenericMappingTools/pygmt/releases/tag/v0.5.0 >`_ (latest release)
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Which GMT?
51
51
PyGMT requires Generic Mapping Tools (GMT) version 6 as a minimum, which is the
52
52
latest released version that can be found at
53
53
the `GMT official site <https://www.generic-mapping-tools.org >`__.
54
- We need the latest GMT (>=6.2 .0) since there are many changes being made to GMT
54
+ We need the latest GMT (>=6.3 .0) since there are many changes being made to GMT
55
55
itself in response to the development of PyGMT, mainly the new
56
56
`modern execution mode <https://docs.generic-mapping-tools.org/latest/cookbook/introduction.html#modern-and-classic-mode >`__.
57
57
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.2 .0
8
+ - gmt=6.3 .0
9
9
- numpy>=1.18
10
10
- pandas
11
11
- xarray
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ class Session:
121
121
"""
122
122
123
123
# The minimum version of GMT required
124
- required_version = "6.2 .0"
124
+ required_version = "6.3 .0"
125
125
126
126
@property
127
127
def session_pointer (self ):
Original file line number Diff line number Diff line change @@ -844,7 +844,7 @@ def test_get_default():
844
844
with clib .Session () as lib :
845
845
assert lib .get_default ("API_GRID_LAYOUT" ) in ["rows" , "columns" ]
846
846
assert int (lib .get_default ("API_CORES" )) >= 1
847
- assert Version (lib .get_default ("API_VERSION" )) >= Version ("6.2 .0" )
847
+ assert Version (lib .get_default ("API_VERSION" )) >= Version ("6.3 .0" )
848
848
849
849
850
850
def test_get_default_fails ():
You can’t perform that action at this time.
0 commit comments