Codebase list python-geopandas / 8e32b7f
New upstream version 0.12.1 Bas Couwenberg 1 year, 6 months ago
4 changed file(s) with 10 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
22
33 Development version
44 -------------------
5
6 Version 0.12.1 (October 29, 2022)
7 ---------------------------------
8
9 Small bug-fix release removing the shapely<2 pin in the installation requirements.
510
611 Version 0.12 (October 24, 2022)
712 -------------------------------
224224 Once dependencies are in place, make an in-place build by navigating to the git
225225 clone of the *GeoPandas* repository and running::
226226
227 python setup.py develop
227 python -m pip install -e .
228228
229229
230230 5) Making changes and writing tests
2222 # setup.py/versioneer.py will grep for the variable names, so they must
2323 # each be defined on a line of their own. _version.py will just call
2424 # get_keywords().
25 git_refnames = " (HEAD -> main, tag: v0.12.0)"
26 git_full = "31f8e6af3b6ec57dc50633e2e1cdfb3a6e932a95"
27 git_date = "2022-10-24 09:06:05 +0200"
25 git_refnames = " (HEAD -> main, tag: v0.12.1)"
26 git_full = "195f70bd1aef5f4eea014b4947e067723ceb6d92"
27 git_date = "2022-10-29 09:25:27 +0200"
2828 keywords = {"refnames": git_refnames, "full": git_full, "date": git_date}
2929 return keywords
3030
3333 else:
3434 INSTALL_REQUIRES = [
3535 "pandas >= 1.0.0",
36 "shapely >= 1.7, < 2",
36 "shapely >= 1.7",
3737 "fiona >= 1.8",
3838 "pyproj >= 2.6.1.post1",
3939 "packaging",