Skip to content

Commit

Permalink
Merge pull request #549 from djhoese/ci-py312
Browse files Browse the repository at this point in the history
Add Python 3.12 to CI tests
  • Loading branch information
djhoese authored Oct 26, 2023
2 parents 9e2acad + 9b23d84 commit 6a8afc0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
fail-fast: true
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.11", "3.12"]
experimental: [false]
include:
- python-version: "3.11"
- python-version: "3.12"
os: "ubuntu-latest"
experimental: true

Expand Down
2 changes: 0 additions & 2 deletions continuous_integration/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ dependencies:
- pillow
- platformdirs
- pyyaml
# 9.3.1 includes bug fix
- proj !=9.3.0
- pyproj
- pykdtree
- rasterio
Expand Down
2 changes: 2 additions & 0 deletions pyresample/test/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
from unittest import mock

import numpy as np
import pyproj
import pytest
from pyproj import CRS

Expand Down Expand Up @@ -232,6 +233,7 @@ def test_proj4_str_dict_conversion_with_valueless_parameter(self):
proj_dict2 = utils.proj4.proj4_str_to_dict(proj_str2)
self.assertDictEqual(proj_dict, proj_dict2)

@pytest.mark.skipif(pyproj.__proj_version__ == "9.3.0", reason="Bug in PROJ causes inequality in EPSG comparison")
def test_def2yaml_converter(self):
import tempfile

Expand Down

0 comments on commit 6a8afc0

Please sign in to comment.