Skip to content

Commit

Permalink
Merge pull request #182 from weikang9009/readme
Browse files Browse the repository at this point in the history
Prepare for v2.3.4 release
  • Loading branch information
weikang9009 committed Mar 2, 2023
2 parents e2c74d9 + 119f182 commit ade994a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: install bleeding edge libpysal, esda, mapclassify & splot (Ubuntu / Python 3.10)
shell: bash -l {0}
run: |
pip install git+https://github.com/pysal/libpysal.git@master
pip install git+https://github.com/pysal/libpysal.git@main
pip install git+https://github.com/pysal/esda.git@main
pip install git+https://github.com/pysal/mapclassify.git@main
pip install git+https://github.com/pysal/splot.git@main
Expand Down
19 changes: 11 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
GeospatIal Distribution DYnamics (giddy) in PySAL
=================================================
PySAL-giddy for exploratory spatiotemporal data analysis
========================================================

![.github/workflows/unittests.yml](https://github.com/pysal/giddy/workflows/.github/workflows/unittests.yml/badge.svg?branch=master)
![Continuous Integration](https://github.com/pysal/giddy/actions/workflows/unittests.yml/badge.svg)
[![codecov](https://codecov.io/gh/pysal/giddy/branch/master/graph/badge.svg)](https://codecov.io/gh/pysal/giddy)
[![Gitter room](https://badges.gitter.im/pysal/giddy.svg)](https://gitter.im/pysal/giddy)
[![PyPI version](https://badge.fury.io/py/giddy.svg)](https://badge.fury.io/py/giddy)
[![DOI](https://zenodo.org/badge/91390088.svg)](https://zenodo.org/badge/latestdoi/91390088)
[![badge](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/pysal/giddy/master)
[![Downloads](https://static.pepy.tech/badge/giddy)](https://pepy.tech/project/giddy)

Giddy is an open-source python library for the analysis of dynamics of
longitudinal spatial data. Originating from the spatial dynamics module
in [PySAL (Python Spatial Analysis Library)](http://pysal.org/), it is under active development
Giddy is an open-source python library for exploratory spatiotemporal data analysis and the analysis of
geospatial distribution dynamics.
It is under active development
for the inclusion of newly proposed analytics that consider the
role of space in the evolution of distributions over time.

*Below are six choropleth maps of US state per-capita incomes from 1929 to 2004 at a fifteen-year interval.*
*Below are six choropleth maps of U.S. state per-capita incomes from 1929 to 2004 at a fifteen-year interval.*

![us_qunitile_maps](figs/us_qunitile_maps.png)

Expand Down Expand Up @@ -45,6 +46,8 @@ Features
[![us_neigborsetLIMA](figs/us_neigborsetLIMA.png)](notebooks/RankBasedMethods.ipynb)

- Income mobility measures
- Alignment-based sequence analysis methods


Examples
--------
Expand All @@ -68,7 +71,7 @@ pip install giddy
Install the development version on [pysal/giddy](https://github.com/pysal/giddy):

```
pip install https://github.com/pysal/giddy/archive/master.zip
pip install https://github.com/pysal/giddy/archive/main.zip
```

#### Requirements
Expand Down
2 changes: 1 addition & 1 deletion giddy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.3.3"
__version__ = "2.3.4"
# __version__ has to be defined in the first line

"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def setup_package():
maintainer="Wei Kang",
maintainer_email="weikang9009@gmail.com",
py_modules=["giddy"],
python_requires=">3.5",
python_requires=">3.6",
# setup_requires=["pytest-runner"],
# tests_require=["pytest"],
keywords="spatial statistics, spatiotemporal analysis",
Expand Down

0 comments on commit ade994a

Please sign in to comment.