Skip to content

Commit

Permalink
Merge 8b50313 into eed4e27
Browse files Browse the repository at this point in the history
  • Loading branch information
oleurud committed Jul 31, 2019
2 parents eed4e27 + 8b50313 commit 7de3611
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 20 deletions.
41 changes: 35 additions & 6 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,42 @@ Release 2019-xx-xx

Updates

- Optimize Dataset df/gdf (#704)
- Decoupling clients from Dataset (#831)
- Client Architecture (#833)
- Fix retry_times usage in Dataset.download (#783)
- Dataset improvements
- Optimize Dataset df/gdf (#704)
- Decoupling clients from Dataset (#831)
- Client Architecture (#833)
- Deprecate cartoframes.analysis.Table in favor of Dataset (#587)
- Fix retry_times usage in Dataset.download (#783)
- Strategy pattern, factory pattern and dynamic sources in Dataset (#834)
- Improve geometry decoding strategy (#798)
- decode_geometry to support EWKT (#773)
- Fix RateLimitException in write/upload operations (#804)
- Refactoring AUTH API
- Refactor auth namespace (#789)
- deprecate _auth_send (#624)
- Refactor Context API: Credentials (#661)
- Clean old API (#807)
- Tables used by a quer (#730)
- New SQLClient API (#808)
- Deprecate cartoframes.analysis.Table in favor of Dataset (#587)
- Strategy pattern, factory pattern and dynamic sources in Dataset (#834)
- New Data Observatory API (#806)
- Widgets
- Define Widget API (#809)
- Add Histogram Widget (#810)
- Add Category Widget (#811)
- Add Animation Control Widget (#812)
- Add Time Series Widget (#813)
- heavy_plus_sign Review Widget AP (#827)
- heavy_plus_sign Add Widgets Documentation (#859)
- Helper methods & Map improvements
- Animation helper method (#657)
- Implement embed map design (#805)
- Responsive panel tab shows when there's no legend (#771)
- vector legends for small values shouldn't round (#544)
- heavy_plus_sign Published map not holding viewport settings (#820)
- geopandas Polygon / MultiPolygon display error
- heavy_plus_sign Add more params in the existing helpers (#830)
- heavy_plus_sign Helper methods palette expressions as python lists (#825)
- Documentation and examples (#859, #879, #790, #873)


1.0b1
Expand Down
16 changes: 8 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ latest version:
$ pip install cartoframes
To install the 1.0b1 beta version:
To install the 1.0b2 beta version:

.. code:: bash
$ pip install cartoframes==1.0b1
$ pip install cartoframes==1.0b2
`cartoframes` is continuously tested on Python versions 2.7, 3.5, and 3.6. It is recommended to use `cartoframes` in Jupyter Notebooks (`pip install jupyter`). See the example usage section below or notebooks in the `examples directory <https://github.com/CartoDB/cartoframes/tree/master/examples>`__ for using `cartoframes` in that environment.

Expand All @@ -98,11 +98,11 @@ To setup `cartoframes` and `Jupyter` in a `virtual environment <http://python-gu
(venv) $ pip install cartoframes jupyter
(venv) $ jupyter notebook
To install the 1.0b1 version, run instead:
To install the 1.0b2 version, run instead:

.. code:: bash
(venv) $ pip install cartoframes==1.0b1 jupyter
(venv) $ pip install cartoframes==1.0b2 jupyter
Then create a new notebook and try the example code snippets below with tables that are in your CARTO account.

Expand All @@ -122,12 +122,12 @@ Alternatively, `pipenv <https://pipenv.readthedocs.io/en/latest/>`__ provides an
$ pipenv install cartoframes jupyter
$ pipenv run jupyter notebook
To install the 1.0b1 version, run instead:
To install the 1.0b2 version, run instead:

.. code:: bash
$ pipenv --three
$ pipenv install cartoframes==1.0b1 jupyter
$ pipenv install cartoframes==1.0b2 jupyter
$ pipenv run jupyter notebook
Native pip
Expand All @@ -139,11 +139,11 @@ If you install packages at a system level, you can install `cartoframes` with:
$ pip install cartoframes
or to install the 1.0b1 version:
or to install the 1.0b2 version:

.. code:: bash
$ pip install cartoframes==1.0b1
$ pip install cartoframes==1.0b2
Example usage
=============
Expand Down
12 changes: 6 additions & 6 deletions docs/developer-center/guides/01-Quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ You can install CARTOframes with `pip`. Simply type the following in the command
$ pip install cartoframes
```

To install the 1.0b1 beta version:
To install the 1.0b2 beta version:

```bash
$ pip install cartoframes==1.0b1
$ pip install cartoframes==1.0b2
```

To install through a Jupyter notebook, you can run
Expand All @@ -26,10 +26,10 @@ To install through a Jupyter notebook, you can run
! pip install cartoframes
```

To install the 1.0b1 beta version:
To install the 1.0b2 beta version:

```bash
!pip install cartoframes==1.0b1
!pip install cartoframes==1.0b2
```

It is recommended to install cartoframes in a [virtual environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/). For example, you can run the following command to create a virtual env, activate it, and install cartoframes:
Expand All @@ -40,12 +40,12 @@ $ source cfenv/bin/activate
(cfenv) $ pip install cartoframes
```

To install the 1.0b1 beta version:
To install the 1.0b2 beta version:

```bash
$ virtualenv cfenv
$ source cfenv/bin/activate
(cfenv) $ pip install cartoframes==1.0b1
(cfenv) $ pip install cartoframes==1.0b2
```

You'll notice the virtual environment name in your command line prompt, like above. Type `deactivate` to exit the virtualenv:
Expand Down

0 comments on commit 7de3611

Please sign in to comment.