From 1003506fe13ac838f8b4bd9d008990068e4f68b2 Mon Sep 17 00:00:00 2001 From: Samuel Maurer Date: Tue, 25 Jul 2023 15:39:32 -0700 Subject: [PATCH] Cleanup --- CHANGELOG.md | 6 ++++-- README.md | 2 +- docs/source/index.rst | 2 +- docs/source/installation.rst | 2 +- setup.py | 2 +- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d1edb0..72dd42e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,15 @@ v0.7 ==== -2022/08/24 +2023/07/26 * Adds support for calculating accessibility isochrones: which nodes are within x network distance of a source node * Allows a maximum distance to be set for POIs +* Adds a warning when a shortest path is requested between unconnected nodes * Supports PyTables 3.7+ +* Support Pandas 2.0 * Switches to pyproject.toml packaging standards -* Adds newer binaries on PyPI +* Adds binaries on PyPI to support Python 3.10 and 3.11 * Improves compilation in MacOS 12+ v0.6.1 diff --git a/README.md b/README.md index 858e3af..a1ed825 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ As of March 2021, binary installers are provided for Mac, Linux, and Windows thr - `pip install pandana` - `conda install pandana --channel conda-forge` -Pandana is easiest to install in Python 3.6 to 3.10. The last version of Pandana with Python 2.7 binaries is v0.4.4 on Conda Forge. The last version with Python 3.5 binaries is v0.6 on Pip. +Pandana is easiest to install in Python 3.8 to 3.11. The last version of Pandana with Python 2.7 binaries is v0.4.4 on Conda Forge. The last version with Python 3.5 binaries is v0.6 on Pip. See the documentation for information about other [installation options](http://udst.github.io/pandana/installation.html). diff --git a/docs/source/index.rst b/docs/source/index.rst index 1f6f81e..db7fcd5 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -8,7 +8,7 @@ Pandana Pandana is a Python library for network analysis that uses `contraction hierarchies `_ to calculate super-fast travel accessibility metrics and shortest paths. The numerical code is in C++. -v0.7, released August 24, 2022. +v0.7, released July 26, 2023. Acknowledgments diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 5ef1a44..9cd6984 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -17,7 +17,7 @@ Or Conda:: conda install pandana --channel conda-forge -Pandana is easiest to install in Python 3.6 to 3.10. The last version of Pandana with Python 2.7 binaries is v0.4.4 on Conda Forge. The last version with Python 3.5 binaries is v0.6 on Pip. +Pandana is easiest to install in Python 3.8 to 3.11. The last version of Pandana with Python 2.7 binaries is v0.4.4 on Conda Forge. The last version with Python 3.5 binaries is v0.6 on Pip. ARM-based Macs diff --git a/setup.py b/setup.py index af42b2b..7682b22 100644 --- a/setup.py +++ b/setup.py @@ -120,12 +120,12 @@ 'tables >=3.1' ], classifiers=[ - "Development Status :: 4 - Beta", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "License :: OSI Approved :: GNU Affero General Public License v3", ], )