Skip to content

Commit

Permalink
Merge pull request #88 from alcarney/develop
Browse files Browse the repository at this point in the history
New Release v0.9.2
  • Loading branch information
alcarney authored Jan 7, 2019
2 parents fe65b67 + 90d25e9 commit 9037c48
Show file tree
Hide file tree
Showing 18 changed files with 751 additions and 44 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ install:
script:
- poetry run pytest --cov=stylo -q

after_success:
- if [ "$TRAVIS_PYTHON_VERSION" == "3.6" ]; then pip install coveralls; coveralls; fi

jobs:
include:
- python: 3.5
- python: 3.6
after_success:
- pip install coveralls
- coveralls

- python: 3.7
dist: xenial

Expand Down
30 changes: 30 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
v0.9.2 - 2019-01-06
-------------------

Changed
^^^^^^^

- Most commonly used objects have been imported into the top level namespace.
This means that it is now possible to write code like the following.

.. code-block:: python
import stylo as st
black = st.FillColor()
circle = st.Circle(fill=True)
image = st.SimpleImage(circle, black)
- The way stylo has been packaged has been changed. It now comes with a couple
of "extras". Instead of requiring dependencies for everything, the default
installation now only contains the packages that are absolutely required to
run stylo.

The other dependencies have been split into a couple of extras

+ :code:`testing`: The dependencies required to import items from the
`stylo.testing` package.
+ :code:`jupyer`: Dependencies required to use stylo interactively in a
jupyter notebook.

v0.9.1 - 2018-12-27
-------------------

Expand Down
Loading

0 comments on commit 9037c48

Please sign in to comment.