From ad40af11b21f7fc5dc3aa04631ad6543be77f022 Mon Sep 17 00:00:00 2001 From: Jay Qi <2721979+jayqi@users.noreply.github.com> Date: Wed, 6 Apr 2022 22:42:27 -0400 Subject: [PATCH] v0.7.1 release --- HISTORY.md | 5 ++++- setup.py | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 39352986..2f4419ff 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ # cloudpathlib Changelog +## v0.7.1 (2022-04-06) + +- Fixed inadvertent inclusion of tests module in package. ([Issue #173](https://github.com/drivendataorg/cloudpathlib/issues/173), [PR #219](https://github.com/drivendataorg/cloudpathlib/pull/219)) + ## v0.7.0 (2022-02-16) - Fixed `glob` and `rglob` functions by using pathlib's globbing logic rather than fnmatch. ([Issue #154](https://github.com/drivendataorg/cloudpathlib/issues/154)) @@ -8,7 +12,6 @@ - Changed `parents` return type from list to tuple, to better match pathlib's tuple-like `_PathParents` return type. - Remove support for Python 3.6. [Issue #186](https://github.com/drivendataorg/cloudpathlib/issues/186) - ## v0.6.5 (2022-01-25) - Fixed error when "directories" created on AWS S3 were reported as files. ([Issue #148](https://github.com/drivendataorg/cloudpathlib/issues/148), [PR #190](https://github.com/drivendataorg/cloudpathlib/pull/190)) diff --git a/setup.py b/setup.py index 809e812e..44e54ca7 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def load_requirements(path: Path): setup( author="DrivenData", author_email="info@drivendata.org", - python_requires=">=3.6", + python_requires=">=3.7", classifiers=[ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", @@ -60,5 +60,5 @@ def load_requirements(path: Path): "Source Code": "https://github.com/drivendataorg/cloudpathlib", }, url="https://github.com/drivendataorg/cloudpathlib", - version="0.7.0", + version="0.7.1", )