From 6f092d10d42060b4433faf6238658621af825478 Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Tue, 25 Oct 2022 18:10:28 +0200 Subject: [PATCH] add python 3.10 and 3.11 --- .github/workflows/ci.yml | 8 ++++++-- CHANGES.md | 5 +++++ pyproject.toml | 5 +++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fadae89..83ee77a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,14 +9,18 @@ on: - '*' pull_request: env: - LATEST_PY_VERSION: '3.9' + LATEST_PY_VERSION: '3.10' jobs: tests: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: + - '3.8' + - '3.9' + - '3.10' + - '3.11.0-rc.2 - 3.11' steps: - uses: actions/checkout@v2 diff --git a/CHANGES.md b/CHANGES.md index 7bd6135..5e36c61 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Release Notes +## 0.2.0 (2022-10-25) + +* remove python 3.7 support +* add python 3.10 and 3.11 support + ## 0.1.1 (2022-07-21) * disable dataset `tags` forwarding by default and add `--forward-dataset-tags` options diff --git a/pyproject.toml b/pyproject.toml index 5113c33..f8d8ffd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "rio-faux" description = "Create empty image from a model." readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" license = {file = "LICENSE"} authors = [ {name = "Vincent Sarago", email = "vincent@developmentseed.com"}, @@ -12,9 +12,10 @@ classifiers = [ "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Scientific/Engineering :: GIS", ] dynamic = ["version"]