Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
cache-environment-key: micromamba-environment-${{ steps.date.outputs.date }}
create-args: >-
gmt=6.6.0
python=3.13
python=3.14
numpy
pandas
xarray
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cache_data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
with:
environment-name: pygmt
create-args: >-
python=3.13
python=3.14
gmt=6.6.0
numpy
pandas
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
# environment cache is persistent for one week.
cache-environment-key: micromamba-environment-${{ steps.date.outputs.date }}
create-args: >-
python=3.13
python=3.14
gmt=6.6.0
ghostscript=10.06.0
numpy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_doctests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
with:
environment-name: pygmt
create-args: >-
python=3.13
python=3.14
gmt=6.6.0
numpy
pandas
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.13']
python-version: ['3.11', '3.14']
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
# Is it a draft Pull Request (true or false)?
isDraft:
Expand All @@ -76,8 +76,8 @@ jobs:
pandas-version: '=2.2'
xarray-version: '=2024.5'
optional-packages: ' contextily geopandas ipython pyarrow-core rioxarray netCDF4 sphinx-gallery'
# Python 3.13 + core packages (latest versions) + optional packages
- python-version: '3.13'
# Python 3.14 + core packages (latest versions) + optional packages
- python-version: '3.14'
numpy-version: '2.3'
pandas-version: ''
xarray-version: ''
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_tests_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# environment cache is persistent for one week.
cache-environment-key: micromamba-environment-${{ steps.date.outputs.date }}
create-args: >-
python=3.13
python=3.14
cmake
make
ninja
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up Python and install dependencies
uses: actions/setup-python@v6.1.0
with:
python-version: '3.13'
python-version: '3.14'
pip-install: ruff prek

- name: List installed packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Set up Python and install dependencies
uses: actions/setup-python@v6.1.0
with:
python-version: '3.13'
python-version: '3.14'
pip-install: build

# This step is only necessary for testing purposes and for TestPyPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Set up Python and install dependencies
uses: actions/setup-python@v6.1.0
with:
python-version: '3.13'
python-version: '3.14'
pip-install: ruff prek

- name: List installed packages
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/type_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,14 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6.1.0
with:
python-version: '3.13'
# Need to install four groups of packages:
python-version: '3.14'
# Need to install following packages:
# 1. required packages
# 2. optional packages
# 3. type checker and stub packages
# 4. other packages that are used somewhere in PyGMT
# 2. type checker and stub packages
# 3. other packages that are used somewhere in PyGMT
pip-install: |
numpy pandas xarray packaging
contextily geopandas ipython pyarrow rioxarray
mypy pandas-stubs pyarrow-stubs
matplotlib pytest

- name: List install packages
run: python -m pip list
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- nodefaults
dependencies:
# Required dependencies
- python=3.13
- python=3.14
- gmt=6.6.0
- ghostscript=10.06.0
- numpy
Expand Down
4 changes: 2 additions & 2 deletions doc/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,14 @@ installed (we'll call it `pygmt` but feel free to change it to whatever you want
::: {tab-item} mamba
:sync: mamba
```
mamba create --name pygmt python=3.13 numpy pandas xarray packaging gmt
mamba create --name pygmt python=3.14 numpy pandas xarray packaging gmt
```
:::

::: {tab-item} conda
:sync: conda
```
conda create --name pygmt python=3.13 numpy pandas xarray packaging gmt
conda create --name pygmt python=3.14 numpy pandas xarray packaging gmt
```
:::
::::
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"numpy>=2.0",
Expand Down