Skip to content

Commit

Permalink
test(io): resolve dependency conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
probberechts committed May 27, 2024
1 parent 9825a7b commit 827ebad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ def setup_package():
"License :: OSI Approved",
"Topic :: Scientific/Engineering",
],
entry_points={
"console_scripts": ["kloppy-query = kloppy.cmdline:run_query"]
},
entry_points={"console_scripts": ["kloppy-query = kloppy.cmdline:run_query"]},
install_requires=[
"lxml>=4.4.0,<5",
"requests>=2.0.0,<3",
Expand All @@ -52,9 +50,11 @@ def setup_package():
"polars>=0.16.6",
"pyarrow",
"pytest-lazy-fixture",
"s3fs<0.5",
"moto[s3]==1.3.7;python_version<'3.10'",
"moto[s3]==4.1.0;python_version>='3.10'",
"s3fs",
"moto[s3]",
# "s3fs<0.5",
# "moto[s3]==1.3.7;python_version<'3.10'",
# "moto[s3]==4.1.0;python_version>='3.10'",
"pytest-httpserver",
],
"development": ["pre-commit==2.6.0"],
Expand Down

0 comments on commit 827ebad

Please sign in to comment.