Skip to content

Commit cdf7c38

Browse files
committed
Merge branch 'main' into to_numpy/pandas_numeric
2 parents 4061ec7 + 3d08919 commit cdf7c38

17 files changed

+215
-36
lines changed

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
# Install Micromamba with conda-forge dependencies
4747
- name: Setup Micromamba
48-
uses: mamba-org/[email protected].0
48+
uses: mamba-org/[email protected].1
4949
with:
5050
environment-name: pygmt
5151
condarc: |

.github/workflows/cache_data.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
# Install Micromamba with conda-forge dependencies
4545
- name: Setup Micromamba
46-
uses: mamba-org/[email protected].0
46+
uses: mamba-org/[email protected].1
4747
with:
4848
environment-name: pygmt
4949
condarc: |

.github/workflows/ci_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
# Install Micromamba with conda-forge dependencies
8282
- name: Setup Micromamba
83-
uses: mamba-org/[email protected].0
83+
uses: mamba-org/[email protected].1
8484
with:
8585
environment-name: pygmt
8686
condarc: |

.github/workflows/ci_doctests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Install Micromamba with conda-forge dependencies
4444
- name: Setup Micromamba
45-
uses: mamba-org/[email protected].0
45+
uses: mamba-org/[email protected].1
4646
with:
4747
environment-name: pygmt
4848
condarc: |

.github/workflows/ci_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114

115115
# Install Micromamba with conda-forge dependencies
116116
- name: Setup Micromamba
117-
uses: mamba-org/[email protected].0
117+
uses: mamba-org/[email protected].1
118118
with:
119119
environment-name: pygmt
120120
condarc: |

.github/workflows/ci_tests_dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
# Install Micromamba with conda-forge dependencies
5959
- name: Setup Micromamba
60-
uses: mamba-org/[email protected].0
60+
uses: mamba-org/[email protected].1
6161
with:
6262
environment-name: pygmt
6363
condarc: |

.github/workflows/ci_tests_legacy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
# Install Micromamba with conda-forge dependencies
5353
- name: Setup Micromamba
54-
uses: mamba-org/[email protected].0
54+
uses: mamba-org/[email protected].1
5555
with:
5656
environment-name: pygmt
5757
condarc: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ jobs:
7575
ls -lh dist/
7676
7777
- name: Publish to Test PyPI
78-
uses: pypa/[email protected].0
78+
uses: pypa/[email protected].2
7979
with:
8080
repository-url: https://test.pypi.org/legacy/
8181

8282
- name: Publish to PyPI
8383
if: startsWith(github.ref, 'refs/tags')
84-
uses: pypa/[email protected].0
84+
uses: pypa/[email protected].2

doc/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
"contextily": ("https://contextily.readthedocs.io/en/stable/", None),
8686
"geopandas": ("https://geopandas.org/en/stable/", None),
8787
"numpy": ("https://numpy.org/doc/stable/", None),
88+
"pyarrow": ("https://arrow.apache.org/docs/", None),
8889
"python": ("https://docs.python.org/3/", None),
8990
"pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None),
9091
"rasterio": ("https://rasterio.readthedocs.io/en/stable/", None),

doc/ecosystem.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ Python objects. They are based on the C++ implementation of Arrow.
9494
```{note}
9595
If you have [PyArrow][] installed, PyGMT does have some initial support for
9696
`pandas.Series` and `pandas.DataFrame` objects with Apache Arrow-backed arrays.
97-
Specifically, only uint/int/float and date32/date64 are supported for now.
98-
Support for string Array dtypes, Duration types and GeoArrow geometry types is still a work in progress.
99-
For more details, see
97+
Specifically, only uint/int/float, date32/date64 and string types are supported for now.
98+
Support for Duration types and GeoArrow geometry types is still a work in progress. For
99+
more details, see
100100
[issue #2800](https://github.com/GenericMappingTools/pygmt/issues/2800).
101101
```
102102

0 commit comments

Comments
 (0)