Skip to content

update deps wrt safety report of vulnerabilities #393

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 16, 2024
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
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