Skip to content

Commit d707a0d

Browse files
committed
Bump the minimum required GMT version to 6.4.0
1 parent edee1c4 commit d707a0d

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/cache_data.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# Install GMT and other required dependencies from conda-forge
3939
- name: Install dependencies
4040
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 \
4242
build
4343
4444
# Install the package that we want to test

.github/workflows/ci_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
# Install GMT and other required dependencies from conda-forge
7171
- name: Install dependencies
7272
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 \
7474
build ipython make myst-parser geopandas \
7575
sphinx sphinx-copybutton sphinx-design sphinx-gallery sphinx_rtd_theme
7676

.github/workflows/ci_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
# Install GMT and other required dependencies from conda-forge
9191
- name: Install dependencies
9292
run: |
93-
mamba install gmt=6.3.0 numpy=${{ matrix.numpy-version }} \
93+
mamba install gmt=6.4.0 numpy=${{ matrix.numpy-version }} \
9494
pandas xarray netCDF4 packaging \
9595
${{ matrix.optional-packages }} \
9696
build dvc make pytest>=6.0 \

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ Compatibility with GMT/Python/NumPy versions
233233
- NumPy
234234
* - `Dev <https://github.com/GenericMappingTools/pygmt/milestone/9>`_ (upcoming release)
235235
- `Dev Documentation <https://www.pygmt.org/dev>`_ (reflects `main branch <https://github.com/GenericMappingTools/pygmt>`_)
236-
- >=6.3.0
236+
- >=6.4.0
237237
- >=3.8
238238
- >=1.20
239239
* - `v0.7.0 <https://github.com/GenericMappingTools/pygmt/releases/tag/v0.7.0>`_ (latest release)

doc/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Which GMT?
8080
PyGMT requires Generic Mapping Tools (GMT) version 6 as a minimum, which is the
8181
latest released version that can be found at
8282
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
8484
itself in response to the development of PyGMT, mainly the new
8585
:gmt-docs:`modern execution mode <cookbook/introduction.html#modern-and-classic-mode>`.
8686

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
dependencies:
66
# Required dependencies
77
- pip
8-
- gmt=6.3.0
8+
- gmt=6.4.0
99
- numpy>=1.20
1010
- pandas
1111
- xarray

pygmt/clib/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class Session:
125125
"""
126126

127127
# The minimum version of GMT required
128-
required_version = "6.3.0"
128+
required_version = "6.4.0"
129129

130130
@property
131131
def session_pointer(self):

pygmt/tests/test_clib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ def test_get_default():
847847
with clib.Session() as lib:
848848
assert lib.get_default("API_GRID_LAYOUT") in ["rows", "columns"]
849849
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")
851851

852852

853853
def test_get_default_fails():

0 commit comments

Comments
 (0)