Skip to content

Commit

Permalink
Merge pull request #372 from skirpichev/0.8
Browse files Browse the repository at this point in the history
0.8
  • Loading branch information
skirpichev committed Nov 7, 2016
2 parents 24b8cf7 + db45407 commit e857a61
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 271 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Guidelines for contributing
Guidelines for Contributing
===========================

This project adheres to `No Code of Conduct`_. Contributions will
be judged by their technical merit. Nothing else matters.

.. _reporting-issues:

Reporting issues
Reporting Issues
----------------

When opening a new issue, please take the following steps:
Expand All @@ -20,7 +20,7 @@ When opening a new issue, please take the following steps:
4. Include any relevant details of your local setup (i.e. Python
version, installed libraries).

Contributing code
Contributing Code
-----------------

All work should be submitted via `Pull Requests (PR)`_.
Expand Down
2 changes: 1 addition & 1 deletion diofant/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
simple as possible in order to be comprehensible and easily extensible.
"""

__version__ = "0.8.0b3"
__version__ = "0.8.0"

import os
DIOFANT_DEBUG = os.getenv('DIOFANT_DEBUG', 'False') != 'False'
Expand Down
4 changes: 2 additions & 2 deletions docs/guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Developer's Guide

.. include:: ../CONTRIBUTING.rst

Rosetta stone
Rosetta Stone
=============

The Diofant project is a `SymPy`_'s fork, so it could be handy to collect here
Expand Down Expand Up @@ -52,7 +52,7 @@ does mean issue ``sympy/sympy#3222`` on Github.
.. _SymPy : http://www.sympy.org/
.. _Diofant's issues : https://github.com/diofant/diofant/issues

Versioning and Release procedure
Versioning and Release Procedure
================================

We use standard `Semantic Versioning`_ MAJOR.MINOR.MAINTENANCE
Expand Down
273 changes: 11 additions & 262 deletions docs/release/notes-0.8.rst

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/tutorial/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ symbolic computation --- results can be symbolically simplified.

Yet we can also approximate this number with any precision

>>> _.n(20)
>>> _.evalf(20)
2.8284271247461900976

The above example starts to show how we can manipulate irrational
Expand Down
5 changes: 3 additions & 2 deletions docs/tutorial/printing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,9 @@ To get the `\LaTeX` form of an expression, use
Dot
===

:func:`~diofant.printing.dot.dotprint` function prints output to
dot format, which can be rendered with Graphviz:
:func:`~diofant.printing.dot.dotprint` function prints output to dot
format, which can be rendered with `Graphviz
<http://www.graphviz.org/>`_:

.. graphviz::

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
python_requires='>=3.4',
tests_require=extra_reqs['develop'],
Expand Down

0 comments on commit e857a61

Please sign in to comment.