Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@

repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.257'
rev: "v0.0.278"
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/psf/black
rev: 22.12.0
rev: 23.7.0
hooks:
- id: black
- repo: https://github.com/codespell-project/codespell
rev: v2.2.2
rev: v2.2.5
hooks:
- id: codespell
args: [--ignore-words=.codespellignore]
Expand All @@ -25,7 +25,7 @@ repos:
additional_dependencies:
- importlib_metadata < 5; python_version == "3.7"
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
rev: v1.4.1
hooks:
- id: mypy
files: ".*\\.py$"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Fixed

- Updated `get_items` signatures for PySTAC v1.8 [#559](https://github.com/stac-utils/pystac-client/pull/559)

## [v0.7.2] - 2023-06-23

### Fixed
Expand Down
8 changes: 0 additions & 8 deletions docs/tutorials.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ PySTAC-Client Introduction

This tutorial gives an introduction to using pystac-client with a STAC API

STAC Metadata Visualization
---------------------------

- :tutorial:`GitHub version <stac-metadata-viz.ipynb>`

This tutorial gives an introduction to using Holeviews and hvplot to visualize
STAC metadata and Item geometries on a map.

CQL2 Filtering
---------------------------

Expand Down
300 changes: 0 additions & 300 deletions docs/tutorials/stac-metadata-viz.ipynb

This file was deleted.

8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [
requires-python = ">=3.8"
dependencies = [
"requests>=2.28.2",
"pystac[validation]>=1.7.2",
"pystac[validation]>=1.8.2",
"python-dateutil>=2.8.2",
]
dynamic = ["version"]
Expand Down Expand Up @@ -57,7 +57,11 @@ dev = [
"tomli~=2.0; python_version<'3.11'",
"types-python-dateutil~=2.8.19",
"types-requests~=2.31.0",
"urllib3<2", # temporary pin https://github.com/stac-utils/pystac-client/issues/509
# temporary pin https://github.com/stac-utils/pystac-client/issues/509
"urllib3<2",
# pytest-recording breakage with v5.0.0, need release of
# https://github.com/kiwicom/pytest-recording/pull/110 to remove this ceil
"vcrpy<5",
]
docs = [
"Sphinx~=6.2",
Expand Down
Loading