diff --git a/Development.md b/Development.md index 2d434ec..fe0164b 100644 --- a/Development.md +++ b/Development.md @@ -8,7 +8,7 @@ Pygeoda for windows is built using Appveyor (see: appveyor.yml) NOTE: python 3.5.0 msc 1900 visual c++ 2015 msvc14.0 -python 3.6.1 msc 1900 visual c++ 2015 +python 3.6.1 msc 1900 visual c++ 2015 (!!as conda-forge, msvc14.1 for py36) python 3.7.0 msc 1914 visual c++ 2017 msvc14.1 python 3.8.1 msc 1916 visual c++ 2017 python 3.9.1 msc 1928 visual c++ 2019 msvc14.2 diff --git a/README.md b/README.md index 557f745..415ce12 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ pygeoda is a python library for spatial data analysis based on libgeoda and GeoD pip install pygeoda ``` -You can install pygeoda from source by using the following command in a terminal: +It will be in conda-forge soon. You can also install pygeoda from source by using the following command in a terminal: ``` pip install git+https://github.com/geodacenter/pygeoda @@ -118,3 +118,12 @@ lisa = pygeoda.local_moran(w, gda['Crm_prs']) * Demean standardize * Standardize data (Z) * Median absolute deviation + + +## Authors + +Xun Li and Luc Anselin + +## Contributors + +Guanpeng Dong; Yong Liu; Hang Zhang; Yeqing Han; \ No newline at end of file diff --git a/pygeoda/__init__.py b/pygeoda/__init__.py index f13b482..c7dc172 100644 --- a/pygeoda/__init__.py +++ b/pygeoda/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.7.5" +__version__ = "0.0.8" # __version__ has to be define in the first line __author__ = "Xun Li , " diff --git a/setup.py b/setup.py index 25c51fb..dacecf0 100644 --- a/setup.py +++ b/setup.py @@ -202,7 +202,7 @@ extra_objects=EXTRA_OBJECTS),] setup (name = 'pygeoda', - version = '0.0.7.5', + version = '0.0.8', author = "Xun Li", author_email = "lixun910@gmail.com", url = "https://github.com/geodacenter/pygeoda",