We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 154e418 commit cb1ece5Copy full SHA for cb1ece5
setup.cfg
@@ -29,5 +29,5 @@ classifiers =
29
[options]
30
packages = find:
31
include_package_data = true
32
-python_requires = >= 3.6
+python_requires = >= 3.10
33
# Dependencies are in setup.py for GitHub's dependency graph.
setup.py
@@ -1,6 +1,6 @@
1
import re
2
3
-from setuptools import setup, find_packages
+from setuptools import setup
4
5
with open("iceberg/__init__.py", encoding="utf8") as f:
6
version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
0 commit comments