Skip to content

Commit 9743bbf

Browse files
authored
Merge branch 'main' into remove/array-to-datetime
2 parents b0d4029 + e9792fe commit 9743bbf

14 files changed

+48
-17
lines changed

.github/workflows/ci_docs.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ jobs:
117117
sphinx-design
118118
sphinx-gallery
119119
sphinx_rtd_theme<3.0
120+
cairosvg
121+
sphinxcontrib-svg2pdfconverter
122+
tectonic
120123
121124
# Download cached remote files (artifacts) from GitHub
122125
- name: Download remote data from GitHub
@@ -135,9 +138,11 @@ jobs:
135138
python -m build --sdist
136139
python -m pip install dist/*
137140
138-
# Build the documentation
139-
- name: Build the documentation
140-
run: make -C doc clean all
141+
- name: Build the HTML documentation
142+
run: make -C doc clean html
143+
144+
- name: Build the PDF documentation
145+
run: make -C doc pdf
141146

142147
- name: Checkout the gh-pages branch
143148
uses: actions/[email protected]

.github/workflows/ci_tests.yaml

+5-3
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,14 @@ jobs:
5757
fail-fast: false
5858
matrix:
5959
python-version: ['3.11', '3.13']
60-
os: [ubuntu-latest, macos-latest, windows-latest]
60+
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
6161
# Is it a draft Pull Request (true or false)?
6262
isDraft:
6363
- ${{ github.event.pull_request.draft }}
64-
# Only run three jobs on Ubuntu for draft PRs
64+
# Only run jobs on Ubuntu for draft PRs
6565
exclude:
66+
- os: ubuntu-24.04-arm
67+
isDraft: true
6668
- os: macos-latest
6769
isDraft: true
6870
- os: windows-latest
@@ -154,7 +156,7 @@ jobs:
154156
GH_TOKEN: ${{ github.token }}
155157

156158
- name: Install uv
157-
uses: astral-sh/[email protected].1
159+
uses: astral-sh/[email protected].2
158160
with:
159161
python-version: ${{ matrix.python-version }}
160162

.github/workflows/ci_tests_dev.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
os: [ubuntu-24.04, macos-15, windows-2025]
39+
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-15, windows-2025]
4040
gmt_git_ref: [master]
4141
timeout-minutes: 30
4242
defaults:

.github/workflows/ci_tests_legacy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
os: [ubuntu-22.04, macos-13, windows-2019]
37+
os: [ubuntu-22.04, ubuntu-22.04-arm, macos-13, windows-2019]
3838
gmt_version: ['6.4']
3939
timeout-minutes: 30
4040
defaults:

.github/workflows/format-command.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
ref: ${{ github.event.client_payload.pull_request.head.ref }}
2626

2727
# Setup Python environment
28-
- uses: actions/setup-python@v5.3.0
28+
- uses: actions/setup-python@v5.4.0
2929
with:
3030
python-version: '3.13'
3131

.github/workflows/publish-to-pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
persist-credentials: false
4949

5050
- name: Set up Python
51-
uses: actions/setup-python@v5.3.0
51+
uses: actions/setup-python@v5.4.0
5252
with:
5353
python-version: '3.13'
5454

.github/workflows/style_checks.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
# Setup Python
3030
- name: Set up Python
31-
uses: actions/setup-python@v5.3.0
31+
uses: actions/setup-python@v5.4.0
3232
with:
3333
python-version: '3.13'
3434

.github/workflows/type_checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
# Setup Python
3939
- name: Set up Python
40-
uses: actions/setup-python@v5.3.0
40+
uses: actions/setup-python@v5.4.0
4141
with:
4242
python-version: '3.13'
4343

ci/requirements/docs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,6 @@ dependencies:
3232
- sphinx-design
3333
- sphinx-gallery
3434
- sphinx_rtd_theme<3.0
35+
# Dev dependencies (building PDF documentation)
36+
# 'sphinxcontrib-svg2pdfconverter' is required since it's added to `extensions`.
37+
- sphinxcontrib-svg2pdfconverter

doc/Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ help:
1515
@echo " api generate rst source files of API documentation"
1616
@echo " html build the HTML files from the existing rst sources"
1717
@echo " html-noplot build the HTML files without running any examples"
18+
@echo " pdf build the PDF documentation"
1819
@echo " server make a local HTTP server for previewing the built documentation"
1920
@echo " clean clean up built and generated files"
2021

@@ -43,6 +44,14 @@ html-noplot: api
4344
@echo
4445
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
4546

47+
pdf: latex
48+
@echo
49+
@echo "Building PDF via Tectonic."
50+
@echo
51+
tectonic -X compile $(BUILDDIR)/latex/pygmt.tex
52+
@echo
53+
@echo "PDF build finished. The PDF file is in $(BUILDDIR)/latex/pygmt.pdf."
54+
4655
server:
4756
@echo
4857
@echo "Running a server on port 8009."

doc/conf.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,17 @@
2828
"sphinx.ext.autodoc",
2929
"sphinx.ext.autosummary",
3030
"sphinx.ext.coverage",
31-
"sphinx.ext.mathjax",
3231
"sphinx.ext.doctest",
33-
"sphinx.ext.viewcode",
3432
"sphinx.ext.extlinks",
3533
"sphinx.ext.intersphinx",
34+
"sphinx.ext.mathjax",
3635
"sphinx.ext.napoleon",
36+
"sphinx.ext.viewcode",
3737
"sphinx_autodoc_typehints",
3838
"sphinx_copybutton",
3939
"sphinx_design",
4040
"sphinx_gallery.gen_gallery",
41+
"sphinxcontrib.cairosvgconverter",
4142
]
4243

4344
# Suppress warnings
@@ -55,7 +56,7 @@
5556
myst_enable_extensions = [
5657
"attrs_inline", # Allow inline attributes after images
5758
"colon_fence", # Allow code fences using colons
58-
"substitution", # Allow substituitions
59+
"substitution", # Allow substitutions
5960
]
6061
# These enable substitutions using {{ key }} in the Markdown files
6162
myst_substitutions = {
@@ -248,3 +249,6 @@
248249
"github_version": "main",
249250
"commit": commit_link,
250251
}
252+
253+
# Configurations for LaTeX
254+
latex_engine = "xelatex"

environment.yml

+4
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ dependencies:
4444
- sphinx-design
4545
- sphinx-gallery>=0.17.0
4646
- sphinx_rtd_theme<3.0
47+
# Dev dependencies (building PDF documentation)
48+
- cairosvg
49+
- sphinxcontrib-svg2pdfconverter
50+
- tectonic
4751
# Dev dependencies (type hints)
4852
- mypy
4953
- pandas-stubs

pygmt/tests/test_contour.py

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Test Figure.contour.
33
"""
44

5+
import platform
56
from pathlib import Path
67

78
import numpy as np
@@ -30,6 +31,7 @@ def fixture_region():
3031

3132

3233
@pytest.mark.mpl_image_compare
34+
@pytest.mark.xfail(platform.machine() == "aarch64", reason="Fails on Linux ARM64")
3335
def test_contour_vec(region):
3436
"""
3537
Plot an x-centered gaussian kernel with different y scale.
@@ -130,6 +132,7 @@ def test_contour_multiple_levels(region):
130132

131133

132134
@pytest.mark.mpl_image_compare(filename="test_contour_vec.png")
135+
@pytest.mark.xfail(platform.machine() == "aarch64", reason="Fails on Linux ARM64")
133136
def test_contour_incols_transposed_data(region):
134137
"""
135138
Make sure that transposing the data matrix still produces a correct result with

pygmt/tests/test_x2sys_cross.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44

55
import copy
6+
import platform
67
import sys
78
from pathlib import Path
89
from tempfile import TemporaryDirectory
@@ -270,7 +271,7 @@ def test_x2sys_cross_region_interpolation_numpoints():
270271
)
271272

272273
assert isinstance(output, pd.DataFrame)
273-
if sys.platform == "darwin":
274+
if platform.machine() in {"aarch64", "arm64"}:
274275
assert output.shape == (3894, 12)
275276
# Check crossover errors (z_X) and mean value of observables (z_M)
276277
npt.assert_allclose(output.z_X.mean(), -138.23215, rtol=1e-4)
@@ -298,7 +299,7 @@ def test_x2sys_cross_trackvalues():
298299
output = x2sys_cross(tracks=["@tut_ship.xyz"], tag=tag, trackvalues=True)
299300

300301
assert isinstance(output, pd.DataFrame)
301-
if sys.platform == "darwin":
302+
if platform.machine() in {"aarch64", "arm64"}:
302303
assert output.shape == (14374, 12)
303304
# Check mean of track 1 values (z_1) and track 2 values (z_2)
304305
npt.assert_allclose(output.z_1.mean(), -2422.973372, rtol=1e-4)

0 commit comments

Comments
 (0)