Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jake authored and jake committed Mar 19, 2024
1 parent 0bb8eb8 commit b5d8069
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions internetarchive/cli/ia.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
from docopt import docopt, printable_usage

if sys.version_info < (3, 10):
from importlib_metadata import entry_points
from importlib_metadata import entry_points # type: ignore[import]
else:
from importlib.metadata import entry_points
from importlib.metadata import entry_points
from schema import Or, Schema, SchemaError # type: ignore[import]

from internetarchive import __version__
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ packages =
internetarchive.cli
install_requires =
docopt>=0.6.0,<0.7.0
importlib-metadata >= 3.6.0 ; python_version <= "3.10"
jsonpatch>=0.4
requests>=2.25.0,<3.0.0
schema>=0.4.0
tqdm>=4.0.0
urllib3>=1.26.0
importlib-metadata>=3.6.0 ;python_version <= "3.10"
python_requires = >=3.7
include_package_data = True
zip_safe = False
Expand Down

0 comments on commit b5d8069

Please sign in to comment.