Skip to content

Commit

Permalink
keep py38
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-maschler committed Feb 20, 2024
1 parent 653f3a6 commit 6727568
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
timeout-minutes: 20

services:
Expand Down
1 change: 0 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

* Update to pydantic v2 and stac_pydantic v3
* Removed internal Stac, Search and Operator Types in favor of stac_pydantic Types
* Drop support for Python 3.8

## [2.4.9] - 2023-11-17

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ known-third-party = ["stac_pydantic", "fastapi"]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]

[tool.black]
target-version = ["py39", "py310", "py311", "py312"]
target-version = ["py38", "py39", "py310", "py311", "py312"]
1 change: 1 addition & 0 deletions stac_fastapi/api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
1 change: 1 addition & 0 deletions stac_fastapi/extensions/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
1 change: 1 addition & 0 deletions stac_fastapi/types/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
3 changes: 2 additions & 1 deletion stac_fastapi/types/stac_fastapi/types/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
"""

import abc
from typing import Annotated, Dict, List, Optional
from typing import Dict, List, Optional

import attr
from pydantic import PositiveInt
from pydantic.functional_validators import AfterValidator
from stac_pydantic.api import Search
from typing_extensions import Annotated


def crop(v: PositiveInt) -> PositiveInt:
Expand Down

0 comments on commit 6727568

Please sign in to comment.