Skip to content

Commit 320250d

Browse files
authored
CI/DEPS: update CI, require Py3.9 (#237)
1 parent afc96d6 commit 320250d

File tree

7 files changed

+18
-13
lines changed

7 files changed

+18
-13
lines changed

.github/workflows/tests.yaml

+12-7
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,24 @@ on:
1313
jobs:
1414
unittests:
1515
name: ${{ matrix.os }}, ${{ matrix.environment-file }}
16-
runs-on: ${{ matrix.os }}-latest
16+
runs-on: ${{ matrix.os }}
1717
timeout-minutes: 30
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
os: [macos, ubuntu, windows]
21+
os: [ubuntu-latest]
2222
environment-file:
23-
[ci/envs/38-minimal.yaml, ci/envs/311-latest-conda-forge.yaml]
23+
- ci/envs/39-minimal.yaml
24+
- ci/envs/310-conda-forge.yaml
25+
- ci/envs/311-conda-forge.yaml
26+
- ci/envs/312-latest-conda-forge.yaml
2427
include:
25-
- os: ubuntu
26-
environment-file: ci/envs/310-conda-forge.yaml
27-
- os: ubuntu
28-
environment-file: ci/envs/39-conda-forge.yaml
28+
- os: macos-latest
29+
environment-file: ci/envs/312-latest-conda-forge.yaml
30+
- os: macos-14 # apple silicon
31+
environment-file: ci/envs/312-latest-conda-forge.yaml
32+
- os: windows-latest
33+
environment-file: ci/envs/312-latest-conda-forge.yaml
2934
defaults:
3035
run:
3136
shell: bash -l {0}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `contextily`: context geo tiles in Python
22

3-
`contextily` is a small Python 3 (3.8 and above) package to retrieve tile maps from the
3+
`contextily` is a small Python 3 (3.9 and above) package to retrieve tile maps from the
44
internet. It can add those tiles as basemap to matplotlib figures or write tile
55
maps to disk into geospatial raster files. Bounding boxes can be passed in both
66
WGS84 (`EPSG:4326`) and Spheric Mercator (`EPSG:3857`). See the notebook
@@ -33,7 +33,7 @@ package. This includes some popular tile maps, such as:
3333

3434
## Installation
3535

36-
**Python 3 only** (3.8 and above)
36+
**Python 3 only** (3.9 and above)
3737

3838
[Latest released version](https://github.com/geopandas/contextily/releases/), using pip:
3939

File renamed without changes.

ci/envs/38-minimal.yaml ci/envs/312-latest-conda-forge.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: test-environment
22
channels:
33
- conda-forge
44
dependencies:
5-
- python=3.8
5+
- python=3.12
66
# required
77
- geopy
88
- matplotlib
File renamed without changes.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3",
2222
"Framework :: Matplotlib",
2323
]
24-
requires-python = ">=3.8"
24+
requires-python = ">=3.9"
2525
dependencies = [
2626
"geopy",
2727
"matplotlib",

tests/test_cx.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def test_warp_tiles():
127127
)
128128
assert wimg[100, 100, :].tolist() == [247, 246, 241, 255]
129129
assert wimg[100, 200, :].tolist() == [246, 246, 241, 255]
130-
assert wimg[20, 120, :].tolist() == [139, 128, 149, 255]
130+
assert wimg[20, 120, :].tolist() == [139, 128, 148, 255]
131131

132132

133133
@pytest.mark.network
@@ -144,7 +144,7 @@ def test_warp_img_transform():
144144
wimg, _ = cx.warp_img_transform(img, rtr.transform, rtr.crs, "epsg:4326")
145145
assert wimg[:, 100, 100].tolist() == [247, 246, 241, 255]
146146
assert wimg[:, 100, 200].tolist() == [246, 246, 241, 255]
147-
assert wimg[:, 20, 120].tolist() == [139, 128, 149, 255]
147+
assert wimg[:, 20, 120].tolist() == [139, 128, 148, 255]
148148

149149

150150
def test_howmany():

0 commit comments

Comments
 (0)