-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #347 from CartoDB/v0.5.0b9_release
V0.5.0b9 release
- Loading branch information
Showing
3 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Contributing to CARTOframes | ||
|
||
## Feature request | ||
|
||
If you'd like to request a feature, first check <https://github.com/cartodb/cartoframes/issues> to see if your request already exists. If it exists, comment on that issie. If it does not, open a new issue clearly defining the need and use case. | ||
|
||
## Reporting bugs | ||
|
||
If the but is not already reported, open a new issue. Please give the following information: | ||
|
||
* Code snippet that produced the error | ||
* Relevant error messages | ||
* cartoframes version (find it with `print(cartoframes.__version__)`) | ||
* Python version (e.g., 3.5, 2.7, etc.) | ||
* Operation system (Windows, Linux, etc.) | ||
|
||
## Pull requests | ||
|
||
### External contributors | ||
|
||
CARTOframes has automated testing against a working CARTO account, and the authentication information is not public. Because of this, external pull requests currently cannot successfully run the full suite of tests. | ||
|
||
To run tests, rename the file `secret.json.sample` to `secret.json` and fill in the credentials for a CARTO account to which you have access. NOTE: the tests require access to different CARTO services like the Data Observatory, so the tests consume quota. | ||
|
||
To open a pull request: | ||
|
||
1. Open against the `develop` branch, which we will keep up-to-date with `master` | ||
2. Tag @andy-esch for review | ||
3. Once the PR has been approved, we'll merge it into `develop`, and then open a fresh pull request against `master` for running the continuous integration. Once tests are successful, we will tag the original contributor there and give final notice before merging in. | ||
|
||
### Internal contributors | ||
|
||
Open a new pull request against the `master` branch and tag @andy-esch. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Changelog | ||
========= | ||
|
||
0.5.0b9 | ||
------- | ||
|
||
Released 2017-12-14 | ||
|
||
Updates | ||
|
||
- Adds `CartoContext.data_boundaries` | ||
- `CartoContext.data_discovery` returns non-denominated data | ||
- Expands `CartoContext.data` to do measure lookups based on `geom_refs` | ||
- Expands styling methods to take pre-defined bins | ||
- Adds a compression option for write operations | ||
- Fixes file system path creation to be generic to OS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.4.2b8' | ||
__version__ = '0.5.0b9' |