Skip to content

Commit

Permalink
update version to 0.9.1 (#1251)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 6352dd33be67e96e14b5762cbdf2c7c14d1fb319
  • Loading branch information
jpoehnelt committed May 17, 2018
1 parent a01b616 commit 521f830
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 46 deletions.
53 changes: 8 additions & 45 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,17 @@
Descarteslabs
=============

Services
--------

This package includes service wrappers for Descartes Labs application services that
do require additional dependencies (included in `requirements.txt`) and are thus not
implicitly included in the root package (see above). Service wrappers include,
primarily, Raster (image access), Metadata (image metadata) and Places (named
shapes and statistics). These services are authenticated and in order to setup
authentication there is a convenience script to help you log in.

```bash
$ python setup.py install
$ pip install -r requirements.txt
$ descarteslabs auth login
```

For non-interactive environments, one needs to set the `CLIENT_ID` and `CLIENT_SECRET`
environment variables. These can be retrieved from the `~/.descarteslabs/token_info.json`
created from the login process or generated fresh through [IAM](https://iam.descarteslabs.com).

```bash
$ export CLIENT_ID=...
$ export CLIENT_SECRET=...
```

Documentation
-------------
The documentation for the latest release can be found at [https://docs.descarteslabs.com](https://docs.descarteslabs.com)

Changelog
=========

## [Unreleased]
## [0.9.0]
## [0.9.1] - 2018-05-17
### Changed
- Patched bug in catalog service for py3

## [0.9.0] - 2018-05-11
### Added
- Catalog service
- Storage service
Expand Down Expand Up @@ -212,7 +189,9 @@ metadata.features for iterating over large search results
### Added
- Initial release of client library

[Unreleased]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.8.1...HEAD
[Unreleased]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.9.1...HEAD
[0.9.1]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.8.1...v0.9.0
[0.8.1]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.6.2...v0.7.0
Expand All @@ -237,20 +216,4 @@ metadata.features for iterating over large search results
[0.2.0]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/descarteslabs/descarteslabs-python/releases/tag/v0.1.0

FAQ
---

If you are on older versions of Python 2.7, you may encounter warnings about
SSL such as:

InsecurePlatformWarning: A true SSLContext object is not
available. This prevents urllib3 from configuring SSL appropriately and
may cause certain SSL connections to fail. For more information, see
https://urllib3.readthedocs.org/en/latest
/security.html#insecureplatformwarning.

Please follow the instructions from
[stackoverflow](http://stackoverflow.com/questions/29099404/ssl-insecureplatform-error-when-using-requests-package)
and install the `"requests[security]"` package with, e.g. `pip install
"requests[security]"`.

2 changes: 1 addition & 1 deletion descarteslabs/client/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.9.0"
__version__ = "0.9.1"

0 comments on commit 521f830

Please sign in to comment.