Skip to content

Commit

Permalink
update deps wrt safety report of vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Varner committed Feb 15, 2024
1 parent 18634f2 commit fbd6dfe
Show file tree
Hide file tree
Showing 7 changed files with 1,116 additions and 786 deletions.
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sphinx configuration."""

project = "STAC API Validator"
author = "Phil Varner"
copyright = "2022, Phil Varner"
Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Nox sessions."""

import os
import shlex
import shutil
Expand Down
1,893 changes: 1,109 additions & 784 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Changelog = "https://github.com/stac-utils/stac-api-validator/releases"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
certifi = "^2022.12.07" # CVE-2022-23491: https://github.com/certifi/python-certifi/security/advisories/GHSA-43fp-rhv2-5gv8
certifi = "^2024.2.2"
pystac-client = "^0.6.1"
requests = "^2.28.1"
requests = "^2.31.0"
pystac = {extras = ["orjson"], version = "^1.7.1"}
jsonschema = "^4.16.0"
PyYAML = "6.0"
Expand Down
1 change: 1 addition & 0 deletions src/stac_api_validator/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Command-line interface."""

import logging
import sys
import traceback
Expand Down
1 change: 1 addition & 0 deletions src/stac_api_validator/validations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Validations module."""

import copy
import itertools
import json
Expand Down
1 change: 1 addition & 0 deletions tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test cases for the __main__ module."""

import pytest
from click.testing import CliRunner

Expand Down

0 comments on commit fbd6dfe

Please sign in to comment.