Skip to content

Commit

Permalink
DOC: 0.5.19 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lenak25 committed Sep 4, 2018
1 parent 2639cf7 commit 47f373f
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 9 deletions.
42 changes: 33 additions & 9 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,26 +66,50 @@ main packages needed. To install MiniConda, you can follow these steps:

Once either Conda or MiniConda has been set up you can install Catalyst:

1. Download the file `python3.6-environment.yml
<https://github.com/enigmampc/catalyst/blob/master/etc/python3.6-environment.yml>`_
(recommended) or `python2.7-environment.yml
<https://github.com/enigmampc/catalyst/blob/master/etc/python2.7-environment.yml>`_
matching your Conda installation from step #1 above.
1. Download the proper .yml file matching your Conda installation from
step #1 above.
To download, simply click on the 'Raw' button and save the file locally
to a folder you can remember. Make sure that the file gets saved with the
``.yml`` extension, and nothing like a ``.txt`` file or anything else.

To download, simply click on the 'Raw' button and save the file locally
to a folder you can remember. Make sure that the file gets saved with the
``.yml`` extension, and nothing like a ``.txt`` file or anything else.
**Linux or MacOS:**
Download the file `python3.6-environment.yml
<https://github.com/enigmampc/catalyst/blob/master/etc/python3.6-environment.yml>`_
(recommended) or `python2.7-environment.yml
<https://github.com/enigmampc/catalyst/blob/master/etc/python2.7-environment.yml>`_

**Windows:**
Download the file `python3.6-environment-windows.yml
<https://github.com/enigmampc/catalyst/blob/master/etc/python3.6-environment-windows.yml>`_
(recommended) or `python2.7-environment.yml
<https://github.com/enigmampc/catalyst/blob/master/etc/python2.7-environment.yml>`_

2. Open a Terminal window and enter [``cd/dir``] into the directory where you
saved the above ``.yml`` file.


3. Install using this file. This step can take about 5-10 minutes to install.

**Linux or MacOS Python 3.6:**

.. code-block:: bash
conda env create -f python3.6-environment.yml
or
**Linux or MacOS Python 2.7:**

.. code-block:: bash
conda env create -f python2.7-environment.yml
**Windows Python 3.6:**

.. code-block:: bash
conda env create -f python3.6-environment-windows.yml
**Windows Python 2.7:**

.. code-block:: bash
Expand Down
15 changes: 15 additions & 0 deletions docs/source/releases.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
=============
Release Notes
=============
Version 0.5.19
^^^^^^^^^^^^^^
**Release Date**: 2018-09-04

Build
~~~~~
- Upgraded `CCXT` version to 1.17.94
- Added the `get_orderbook` function to the API.
- Aligned the `data.current` to crypto OHLCV left labeling.
- Added the support for live trading in Huobi Pro, OKEx, HitBTC and KuCoin.

Bug Fixes
~~~~~~~~~
- Fixed the timeout handling in `get_candles` function :issue:`420`
- Fixed the catalyst conda yml installation on windows :issue:`407`

Version 0.5.18
^^^^^^^^^^^^^^
Expand Down

0 comments on commit 47f373f

Please sign in to comment.