Skip to content

Commit

Permalink
Adjust some dependabot recommendations to actually work
Browse files Browse the repository at this point in the history
  • Loading branch information
nutjob4life committed Sep 10, 2024
1 parent 341f215 commit 947877a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -96,18 +96,18 @@ dev =
sphinx == 4.2.0 # Documentation generation
sphinx-rtd-theme == 0.5.0 # Documentation theme
sphinx-argparse == 0.2.5 # I don't think we even use this
mypy-zope == 0.3.2 # Type stubs for zope.interface
mypy-zope == 1.0.5 # Type stubs for zope.interface
types-pkg_resources == 0.1.3 # Type stubs for package introspection API
lxml-stubs == 0.5.1 # Type stubs for lxml, duh
flake8 == 3.9.2 # Unquestioning adherence to coding stylees
flake8-bugbear == 21.9.1 # Ditto
flake8-docstrings == 1.6.0 # And check the docstrings too
pep8-naming == 0.12.1 # And even your function and variable names
mypy == 0.910 # Do your type annotations actually work?
mypy ~= 1.10.0 # Do your type annotations actually work?
pydocstyle == 6.1.1 # Do your docstrings look like everyone else's?
coverage == 5.5 # Does all your code get exercised?
pytest == 6.2.5 # Testing
pytest-cov == 2.12.1 # pytest + coverage = pytest-cov
pytest-cov == 5.0.0 # pytest + coverage = pytest-cov
pytest-watch == 4.2.0 # Automatic testing every time you save a file
pytest-xdist == 2.4.0 # You got multiple cores, right?
pre-commit == 2.15.0 # Auto-run checks on every commit
Expand Down
2 changes: 1 addition & 1 deletion src/pds2/aipgen/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def _getproducts(server_url: str, lidvid: str, allcollections=True) -> Iterator[
params = {"sort": _searchkey, "limit": _apiquerylimit}
while True:
_logger.debug('Making request to %s with params %r', url, params)
r = requests.get(url, params=params)
r = requests.get(url, params=params) # type: ignore
matches = r.json()["data"]
num_matches = len(matches)
for i in matches:
Expand Down

0 comments on commit 947877a

Please sign in to comment.