Skip to content

Commit

Permalink
CI: bump python versions to 3.8-3.11 (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfleis committed Feb 1, 2023
1 parent e14dfcb commit 4f83961
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ name: Tests
on:
push:
branches:
- '*'
- "*"
pull_request:
branches:
- '*'
- "*"
schedule:
- cron: '59 23 * * 3'
- cron: "59 23 * * 3"

jobs:

unittests:
name: ${{ matrix.os }}, ${{ matrix.environment-file }}
runs-on: ${{ matrix.os }}-latest
Expand All @@ -20,10 +19,11 @@ jobs:
fail-fast: false
matrix:
os: [macos, ubuntu, windows]
environment-file: [ci/envs/37-minimal.yaml, ci/envs/310-latest-conda-forge.yaml]
environment-file:
[ci/envs/38-minimal.yaml, ci/envs/311-latest-conda-forge.yaml]
include:
- os: ubuntu
environment-file: ci/envs/38-conda-forge.yaml
environment-file: ci/envs/310-conda-forge.yaml
- os: ubuntu
environment-file: ci/envs/39-conda-forge.yaml

Expand All @@ -35,7 +35,7 @@ jobs:
uses: mamba-org/provision-with-micromamba@main
with:
environment-file: ${{ matrix.environment-file }}
micromamba-version: 'latest'
micromamba-version: "latest"

- name: Install contextily
shell: bash -l {0}
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# `contextily`: context geo tiles in Python

`contextily` is a small Python 3 (3.7 and above) package to retrieve tile maps from the
`contextily` is a small Python 3 (3.8 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
`contextily_guide.ipynb` for usage.


[![Tests](https://github.com/geopandas/contextily/actions/workflows/tests.yaml/badge.svg)](https://github.com/geopandas/contextily/actions/workflows/tests.yaml)
[![codecov](https://codecov.io/gh/geopandas/contextily/branch/main/graph/badge.svg?token=5Eu3L1peBb)](https://codecov.io/gh/geopandas/contextily)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/geopandas/contextily/main?urlpath=lab/tree/notebooks/intro_guide.ipynb)
Expand Down Expand Up @@ -34,7 +33,7 @@ package. This includes some popular tile maps, such as:

## Installation

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

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

Expand All @@ -48,7 +47,6 @@ or conda:
conda install contextily
```


## Contributors

`contextily` is developed by a community of enthusiastic volunteers. You can see a full list [here](https://github.com/geopandas/contextily/graphs/contributors).
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.7
- python=3.11
# required
- geopy
- matplotlib
Expand Down
File renamed without changes.

0 comments on commit 4f83961

Please sign in to comment.