We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abf8475 commit 4f2ebf2Copy full SHA for 4f2ebf2
1 file changed
setup.py
@@ -1,27 +1,9 @@
1
import os
2
-import sys
3
4
from setuptools import setup
5
6
rootpath = os.path.abspath(os.path.dirname(__file__))
7
8
-if sys.version_info < (3, 5):
9
- error = """
10
- folium 0.9+ supports Python 3.5 and above.
11
- When using Python 2.7, please install folium 0.8.*.
12
-
13
- See folium `README.rst` file for more information:
14
15
- https://github.com/python-visualization/folium/blob/main/README.rst
16
17
- Python {py} detected.
18
19
- Try upgrading pip and retry.
20
- """.format(
21
- py=".".join([str(v) for v in sys.version_info[:3]])
22
- )
23
- print(error, file=sys.stderr)
24
- sys.exit(1)
25
26
27
def read(*parts):
0 commit comments