diff --git a/CHANGELOG.md b/CHANGELOG.md index f38e046a..1b06246b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## [UNRELEASED] +## [v0.4.7] 2022-12-11 + +* bug fixes: + * fixed open() for direct access + * python-magic is a test dependency so moved to the dev section. + * Minor edits in the README + ## [v0.4.6] 2022-12-08 * Features: diff --git a/README.md b/README.md index 00af8e46..b6da205c 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ In the age of cloud computing, the power of open science only reaches its full potential if we have easy-to-use workflows that facilitate research in an inclusive, efficient and reproducible way. Unfortunately —as it stands today— scientists and students alike face a steep learning curve adapting to systems that have grown too complex and end up spending more time on the technicalities of the tools, cloud and NASA APIs than focusing on their important science. -During several workshops organized by [NASA Openscapes](https://nasa-openscapes.github.io/events.html) the need to provide easy-to-use tools to our users became evident. Open science is a collaborative effort, it involves people from different technical backgrounds. Data analysis for the pressing problems we face cannot be limited by the complexity of the underlaying systems and thus providing easy access to NASA Earthdata is the main motivation behind this library. +During several workshops organized by [NASA Openscapes](https://nasa-openscapes.github.io/events.html) the need to provide easy-to-use tools to our users became evident. Open science is a collaborative effort, it involves people from different technical backgrounds and data analysis for the pressing problems we face cannot be limited by the complexity of the underlaying systems. Therefore, providing easy access to NASA Earthdata regardless of the data location (cloud or NASA hosted) is the main motivation behind this Python library. ## **Installing earthaccess** diff --git a/pyproject.toml b/pyproject.toml index f4d1b958..09162b45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "earthaccess" -version = "0.4.6" +version = "0.4.7" homepage = "https://github.com/nsidc/earthaccess" description = "Client library for NASA Earthdata APIs" authors = ["earthaccess contributors"] @@ -38,10 +38,10 @@ tinynetrc = "^1.3.1" aiofiles = ">=0.8.0" aiohttp = ">=3.8.0" multimethod = ">=1.8" -python-magic = ">=0.4" [tool.poetry.dev-dependencies] +python-magic = ">=0.4" mypy = ">=0.812" black = ">=21.11b0" isort = ">=5"