Skip to content

Commit 842f63f

Browse files
merge main
2 parents 8631a1b + be71c22 commit 842f63f

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Sphinx configuration."""
2+
23
project = "STAC API Validator"
34
author = "Phil Varner"
45
copyright = "2022, Phil Varner"

noxfile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Nox sessions."""
2+
23
import os
34
import shlex
45
import shutil

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Changelog = "https://github.com/stac-utils/stac-api-validator/releases"
1818
[tool.poetry.dependencies]
1919
python = "^3.10"
2020
click = "^8.1.3"
21-
certifi = "^2022.12.07" # CVE-2022-23491: https://github.com/certifi/python-certifi/security/advisories/GHSA-43fp-rhv2-5gv8
21+
certifi = "^2024.2.2"
2222
pystac-client = "^0.7.5"
23-
requests = "^2.28.1"
23+
requests = "^2.31.0"
2424
pystac = {extras = ["orjson"], version = "^1.8.3"}
2525
jsonschema = "^4.16.0"
2626
PyYAML = "^6.0.1"

src/stac_api_validator/__main__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Command-line interface."""
2+
23
import logging
34
import sys
45
import traceback

src/stac_api_validator/validations.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Validations module."""
2+
23
import copy
34
import itertools
45
import json

tests/test_main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Test cases for the __main__ module."""
2+
23
import pytest
34
from click.testing import CliRunner
45

0 commit comments

Comments
 (0)