Skip to content

Commit

Permalink
deps: bump pytest-recording, remove vcrpy pin (#1201)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski authored Aug 10, 2023
1 parent 27ea872 commit f8e4400
Showing 1 changed file with 7 additions and 17 deletions.
24 changes: 7 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ description = "Python library for working with the SpatioTemporal Asset Catalog
readme = "README.md"
authors = [
{ name = "Rob Emanuele", email = "[email protected]" },
{ name = "Jon Duckworth", email = "[email protected]" }
]
maintainers = [
{ name = "Pete Gadomski", email = "[email protected]" }
{ name = "Jon Duckworth", email = "[email protected]" },
]
maintainers = [{ name = "Pete Gadomski", email = "[email protected]" }]
keywords = ["pystac", "imagery", "raster", "catalog", "STAC"]
license = { text = "Apache-2.0" }
classifiers=[
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
Expand All @@ -30,10 +28,7 @@ dependencies = [
dynamic = ["version"]

[project.optional-dependencies]
bench = [
"asv~=0.5",
"virtualenv~=20.22",
]
bench = ["asv~=0.5", "virtualenv~=20.22"]
docs = [
"Sphinx~=6.2",
"ipython~=8.12",
Expand All @@ -45,9 +40,7 @@ docs = [
"sphinx-design~=0.4",
"sphinxcontrib-fulltoc~=1.2",
]
jinja2 = [
"jinja2<4.0",
]
jinja2 = ["jinja2<4.0"]
orjson = ["orjson>=3.5"]
test = [
"black~=23.3",
Expand All @@ -62,16 +55,13 @@ test = [
"pre-commit~=3.2",
"pytest-cov~=4.0",
"pytest-mock~=3.10",
"pytest-recording~=0.12",
"pytest-recording~=0.13",
"pytest~=7.3",
"ruff==0.0.284",
"types-html5lib~=1.1",
"types-orjson~=3.6",
"types-python-dateutil~=2.8",
"types-urllib3~=1.26",
# pytest-recording breakage with v5.0.0, need release of
# https://github.com/kiwicom/pytest-recording/pull/110 to remove this ceil
"vcrpy<5",
]
urllib3 = ["urllib3>=1.26"]
# jsonschema v4.18.2 breaks validation, and it feels safer to set a ceiling rather than just skip this version. The ceiling should be removed when the v4.18 lineage has settled down and feels safer.
Expand Down Expand Up @@ -100,7 +90,7 @@ filterwarnings = [
"error",
# Allows jsonschema's RefResolver deprecation warning through until we're
# updated to support jsonschema v4.18
"default::DeprecationWarning:pystac.validation.*"
"default::DeprecationWarning:pystac.validation.*",
]

[build-system]
Expand Down

0 comments on commit f8e4400

Please sign in to comment.