Merge pull request #106 from geopandas/release/0.1.0

Release 0.1.0
This commit is contained in:
Kelsey Jordahl
2014-07-12 15:30:50 -05:00
4 changed files with 18 additions and 9 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ master_doc = 'index'
# General information about the project.
project = u'GeoPandas'
copyright = u'2013, GeoPandas developers'
copyright = u'2013-2014, GeoPandas developers'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -52,7 +52,7 @@ try:
version = release = d['version']
except:
# FIXME: This shouldn't be hardwired, but should be set one place only
version = release = '0.1.0.dev'
version = release = '0.1.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+14 -5
View File
@@ -1,14 +1,23 @@
Installation
============
GeoPandas is continuous-release software. You may install the latest
source from `GitHub`_ and use the setup script::
The released version of GeoPandas is 0.1. To install the released
version, use ``pip install geopandas``.
You may install the latest development version by cloning the
`GitHub`_ repository and using the setup script::
git clone https://github.com/kjordahl/geopandas.git
cd geopandas
python setup.py install
GeoPandas is also available on `PyPI`_, so ``pip install geopandas``
should work as well. You will have to add the ``--pre`` flag
for pip 1.4 and later.
It is also possible to install the latest development version
available on PyPI with `pip` by adding the ``--pre`` flag for pip 1.4
and later, or to use `pip` to install directly from the GitHub
repository with::
pip install git+git://github.com/kjordahl/geopandas.git
Dependencies
------------
+1 -1
View File
@@ -1,7 +1,7 @@
try:
from geopandas.version import version as __version__
except ImportError:
__version__ = '0.1.0.dev-unknown'
__version__ = '0.1.0'
from geopandas.geoseries import GeoSeries
from geopandas.geodataframe import GeoDataFrame
+1 -1
View File
@@ -30,7 +30,7 @@ such as PostGIS.
MAJOR = 0
MINOR = 1
MICRO = 0
ISRELEASED = False
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = ''