Skip to content

Commit

Permalink
add python 3.10 and 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Oct 25, 2022
1 parent 84f50a9 commit 6f092d1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"},
Expand All @@ -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"]
Expand Down

0 comments on commit 6f092d1

Please sign in to comment.