Skip to content

Commit

Permalink
Merge pull request #146 from knaaptime/warnings
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
knaaptime authored Feb 1, 2020
2 parents ff2b6b7 + de659d5 commit 5d5d1dc
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 272 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Segregation Analysis, Inference, and Decomposition with PySAL

[![Build Status](https://travis-ci.com/pysal/segregation.svg?branch=master)](https://travis-ci.org/pysal/segregation)
[![Coverage Status](https://coveralls.io/repos/github/pysal/segregation/badge.svg?branch=master)](https://coveralls.io/github/pysal/segregation?branch=master&service=github&kill_cache=1) [![DOI](https://zenodo.org/badge/162503796.svg)](https://zenodo.org/badge/latestdoi/162503796)
[![Coverage Status](https://coveralls.io/repos/github/pysal/segregation/badge.svg?branch=master)](https://coveralls.io/github/pysal/segregation?branch=master&service=github&kill_cache=1)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/segregation)
![PyPI](https://img.shields.io/pypi/v/segregation)
![Conda (channel only)](https://img.shields.io/conda/vn/conda-forge/segregation)
![GitHub commits since latest release (branch)](https://img.shields.io/github/commits-since/pysal/segregation/latest)
[![DOI](https://zenodo.org/badge/162503796.svg)](https://zenodo.org/badge/latestdoi/162503796)


![](doc/_static/images/heatmaps.png)
Expand Down
2 changes: 1 addition & 1 deletion segregation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.1.1"
__version__ = "1.2.0"
"""
:mod:`segregation` --- Spatial/Aspatial Segregation Analysis
=================================================
Expand Down
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,16 @@ def setup_package():
version = __version__,
description = "Analytics for spatial and non-spatial segregation in Python.",
long_description = long_description,
long_description_content_type = "text/markdown",
long_description_content_type = "text/markdown",
maintainer = "Renan Xavier Cortes",
maintainer_email = '[email protected]',
url='https://segregation.readthedocs.io/en/latest/',
download_url='https://pypi.org/project/segregation/',
license = 'BSD',
py_modules = ['segregation'],
packages = find_packages(),
# setup_requires = ["pytest-runner"],
# tests_require = ["pytest"],
keywords = ['spatial statistics', 'demography'],
classifiers = [
#'Development Status :: 1 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
Expand All @@ -68,10 +65,11 @@ def setup_package():
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
install_requires = install_reqs,
cmdclass = {'build_py': build_py},
python_requires = '>3.4')


Expand Down
52 changes: 52 additions & 0 deletions tools/changelog_1.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Changes

Version 1.2.0 (2020-01-31)

We closed a total of 37 issues (enhancements and bug fixes) through 13 pull requests, since our last release on 2019-07-19.

## Issues Closed
- move import down (#144)
- addressing pysal/pysal#1145 (#141)
- tweaks readme (#137)
- Fix ReadMe (#140)
- development guidelines link broken (#138)
- resolving broken link (#139)
- improve inference wrappers docstring (#136)
- Strange non-corresponding legend on output (Out)when running indexes (#135)
- [WIP] NA handling (#130)
- Update link for instruction of LTDB_Std_All_fullcount.zip (#132)
- handling nans/missing values (#105)
- Raise an informative error when input data have NAs (also update geosnap links) (#131)
- ModuleNotFoundError: No module named 'segregation.spatial' (#129)
- haversine_distance relies on newer version of scikit-learn (#127)
- update scikit-learn requirements (#128)
- fix bug of compute_all tests (#126)
- Swap to more robust tests that rely on numpy seeds (#123)
- Adds MinMax and SpatialMinMax to documentations/notebooks and compute_all and tweak notebooks (#121)
- Change precision of simulated-based tests. (#125)
- Increase the precision of simulated-based tests. (#124)
- [ENH] extend inference framework to multigroup indices (#86)
- Adds inference wrappers for multigroup indexes (Single and Two) (#122)
- change way to declare latex equation in examples notebooks for PySAL notebooks rendering (#120)
- doc: release 1.1.1 tweaks (init, changelog and gitcount) (#119)

## Pull Requests
- move import down (#144)
- addressing pysal/pysal#1145 (#141)
- Fix ReadMe (#140)
- resolving broken link (#139)
- improve inference wrappers docstring (#136)
- Raise an informative error when input data have NAs (also update geosnap links) (#131)
- update scikit-learn requirements (#128)
- fix bug of compute_all tests (#126)
- Adds MinMax and SpatialMinMax to documentations/notebooks and compute_all and tweak notebooks (#121)
- Change precision of simulated-based tests. (#125)
- Adds inference wrappers for multigroup indexes (Single and Two) (#122)
- change way to declare latex equation in examples notebooks for PySAL notebooks rendering (#120)
- doc: release 1.1.1 tweaks (init, changelog and gitcount) (#119)

The following individuals contributed to this release:

- Eli Knaap
- James Gaboardi
- Renan X Cortes
Loading

0 comments on commit 5d5d1dc

Please sign in to comment.