Skip to content

Commit 6d5f000

Browse files
authored
Merge pull request #185 from NASA-PDS/dependabot-upgrades
Adjust some dependabot recommendations to actually work
2 parents ce55f70 + 947877a commit 6d5f000

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,18 +96,18 @@ dev =
9696
sphinx == 4.2.0 # Documentation generation
9797
sphinx-rtd-theme == 0.5.0 # Documentation theme
9898
sphinx-argparse == 0.2.5 # I don't think we even use this
99-
mypy-zope == 0.3.2 # Type stubs for zope.interface
99+
mypy-zope == 1.0.5 # Type stubs for zope.interface
100100
types-pkg_resources == 0.1.3 # Type stubs for package introspection API
101101
lxml-stubs == 0.5.1 # Type stubs for lxml, duh
102102
flake8 == 3.9.2 # Unquestioning adherence to coding stylees
103103
flake8-bugbear == 21.9.1 # Ditto
104104
flake8-docstrings == 1.6.0 # And check the docstrings too
105105
pep8-naming == 0.12.1 # And even your function and variable names
106-
mypy == 0.910 # Do your type annotations actually work?
106+
mypy ~= 1.10.0 # Do your type annotations actually work?
107107
pydocstyle == 6.1.1 # Do your docstrings look like everyone else's?
108108
coverage == 5.5 # Does all your code get exercised?
109109
pytest == 6.2.5 # Testing
110-
pytest-cov == 2.12.1 # pytest + coverage = pytest-cov
110+
pytest-cov == 5.0.0 # pytest + coverage = pytest-cov
111111
pytest-watch == 4.2.0 # Automatic testing every time you save a file
112112
pytest-xdist == 2.4.0 # You got multiple cores, right?
113113
pre-commit == 2.15.0 # Auto-run checks on every commit

src/pds2/aipgen/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def _getproducts(server_url: str, lidvid: str, allcollections=True) -> Iterator[
176176
params = {"sort": _searchkey, "limit": _apiquerylimit}
177177
while True:
178178
_logger.debug('Making request to %s with params %r', url, params)
179-
r = requests.get(url, params=params)
179+
r = requests.get(url, params=params) # type: ignore
180180
matches = r.json()["data"]
181181
num_matches = len(matches)
182182
for i in matches:

0 commit comments

Comments
 (0)