Skip to content

Commit

Permalink
CI/DEPS: update CI, require Py3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfleis committed Mar 4, 2024
1 parent afc96d6 commit da5d646
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,19 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos, ubuntu, windows]
os: [ubuntu-latests]
environment-file:
[ci/envs/38-minimal.yaml, ci/envs/311-latest-conda-forge.yaml]
- ci/envs/39-minimal.yaml
- ci/envs/310-conda-forge.yaml
- ci/envs/311-conda-forge.yaml
- ci/envs/312-latest-conda-forge.yaml
include:
- os: ubuntu
environment-file: ci/envs/310-conda-forge.yaml
- os: ubuntu
environment-file: ci/envs/39-conda-forge.yaml
- os: macos-latest
environment-file: ci/envs/312-latest-conda-forge.yaml
- os: macos-latest
environment-file: ci/envs/312-latest-conda-forge.yaml
- os: windows-latest
environment-file: ci/envs/312-latest-conda-forge.yaml
defaults:
run:
shell: bash -l {0}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `contextily`: context geo tiles in Python

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

## Installation

**Python 3 only** (3.8 and above)
**Python 3 only** (3.9 and above)

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

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: test-environment
channels:
- conda-forge
dependencies:
- python=3.8
- python=3.12
# required
- geopy
- matplotlib
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Framework :: Matplotlib",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"geopy",
"matplotlib",
Expand Down

0 comments on commit da5d646

Please sign in to comment.