Skip to content

Commit

Permalink
Bump version (+pep8)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquev6 committed Jun 17, 2017
1 parent fc73270 commit e8f49fc
Show file tree
Hide file tree
Showing 17 changed files with 50 additions and 30 deletions.
2 changes: 2 additions & 0 deletions ActionTree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@
except ValueError: # Not unittested: Not doctested: specific to macOS
stderr = ctypes.c_void_p.in_dll(libc, "__stderrp")


# @todo Evaluate https://pypi.python.org/pypi/PyContracts


def execute(action, cpu_cores=None, keep_going=False, do_raise=True, hooks=None):
"""
Recursively execute an :class:`.Action`'s dependencies then the action.
Expand Down
10 changes: 6 additions & 4 deletions docs/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Index &#8212; ActionTree 0.9.0 documentation</title>
<title>Index &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down Expand Up @@ -124,12 +124,14 @@ <h2 id="C">C</h2>
<h2 id="D">D</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="reference.html#ActionTree.stock.DeleteFile">DeleteFile (class in ActionTree.stock)</a>
<li><a href="reference.html#ActionTree.stock.DeleteDirectory">DeleteDirectory (class in ActionTree.stock)</a>
</li>
<li><a href="reference.html#ActionTree.Action.dependencies">dependencies (ActionTree.Action attribute)</a>
<li><a href="reference.html#ActionTree.stock.DeleteFile">DeleteFile (class in ActionTree.stock)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="reference.html#ActionTree.Action.dependencies">dependencies (ActionTree.Action attribute)</a>
</li>
<li><a href="reference.html#ActionTree.DependencyCycleException">DependencyCycleException</a>
</li>
<li><a href="reference.html#ActionTree.DependencyGraph">DependencyGraph (class in ActionTree)</a>
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>ActionTree &#8212; ActionTree 0.9.0 documentation</title>
<title>ActionTree &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
Binary file modified docs/objects.inv
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/py-modindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Python Module Index &#8212; ActionTree 0.9.0 documentation</title>
<title>Python Module Index &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
20 changes: 18 additions & 2 deletions docs/reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Reference &#8212; ActionTree 0.9.0 documentation</title>
<title>Reference &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down Expand Up @@ -711,6 +711,22 @@ <h1>Reference<a class="headerlink" href="#reference" title="Permalink to this he
<p>&#64;todoc</p>
</dd></dl>

<dl class="class">
<dt id="ActionTree.stock.DeleteDirectory">
<em class="property">class </em><code class="descclassname">ActionTree.stock.</code><code class="descname">DeleteDirectory</code><span class="sig-paren">(</span><em>name</em>, <em>label=&lt;object object&gt;</em>, <em>*args</em>, <em>**kwds</em><span class="sig-paren">)</span><a class="headerlink" href="#ActionTree.stock.DeleteDirectory" title="Permalink to this definition"></a></dt>
<dd><p>A stock action that deletes a directory (recursively).
No error will be raise if the directory doesn’t exist.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>name</strong> (<a class="reference external" href="https://docs.python.org/2/library/functions.html#str" title="(in Python v2.7)"><em>str</em></a>) – the name of the directory to delete, passed to <a class="reference external" href="https://docs.python.org/2/library/shutil.html#shutil.rmtree" title="(in Python v2.7)"><code class="xref py py-func docutils literal"><span class="pre">shutil.rmtree()</span></code></a>.</td>
</tr>
</tbody>
</table>
<p>&#64;todoc</p>
</dd></dl>

<dl class="class">
<dt id="ActionTree.stock.CopyFile">
<em class="property">class </em><code class="descclassname">ActionTree.stock.</code><code class="descname">CopyFile</code><span class="sig-paren">(</span><em>src</em>, <em>dst</em>, <em>label=&lt;object object&gt;</em>, <em>*args</em>, <em>**kwds</em><span class="sig-paren">)</span><a class="headerlink" href="#ActionTree.stock.CopyFile" title="Permalink to this definition"></a></dt>
Expand Down
4 changes: 2 additions & 2 deletions docs/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Search &#8212; ActionTree 0.9.0 documentation</title>
<title>Search &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/user_guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>User guide &#8212; ActionTree 0.9.0 documentation</title>
<title>User guide &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/drawings.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Drawings &#8212; ActionTree 0.9.0 documentation</title>
<title>Drawings &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/hooks.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Hooks &#8212; ActionTree 0.9.0 documentation</title>
<title>Hooks &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/introduction.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Introduction &#8212; ActionTree 0.9.0 documentation</title>
<title>Introduction &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/outputs.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Outputs and side-effects &#8212; ActionTree 0.9.0 documentation</title>
<title>Outputs and side-effects &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/resources.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Resources &#8212; ActionTree 0.9.0 documentation</title>
<title>Resources &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/source_files.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Source files of examples &#8212; ActionTree 0.9.0 documentation</title>
<title>Source files of examples &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/timing.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Timing information &#8212; ActionTree 0.9.0 documentation</title>
<title>Timing information &#8212; ActionTree 0.10.0 documentation</title>

<link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />

<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '0.9.0',
VERSION: '0.10.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import sys


version = "0.9.0"
version = "0.10.0"


def py2_only(*dependencies):
Expand Down

0 comments on commit e8f49fc

Please sign in to comment.