Skip to content

Commit

Permalink
Bump version to 0.0.7 (#34)
Browse files Browse the repository at this point in the history
* notes for which command to use for bumping version

* added twine for reqirements

* changes after make release

* updated 0.0.7
  • Loading branch information
jovsa committed Jul 26, 2020
1 parent 3956bcf commit 606d04d
Show file tree
Hide file tree
Showing 13 changed files with 77 additions and 394 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ docs: $(SRC)
test:
nbdev_test_nbs

# command to update pypi package
release: pypi
nbdev_bump_version

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

### Usefull Links
* [Design document](jovsa.github.io/jsmltools/design_document/): outlines the choices, condiderations and tradeoffs made
* [Design document](https://jovsa.github.io/jovsatools/design_document/): outlines the choices, condiderations and tradeoffs made

* [Usefull commands](https://github.com/jovsa/jsmltools/blob/master/Makefile): when running things locally
* [Usefull commands](https://github.com/jovsa/jovsatools/blob/master/Makefile): when running things locally

* Link to [documentation](https://jovsa.github.io/jovsatools)

Expand Down
2 changes: 1 addition & 1 deletion docs/gdrive_activity_tracking.html
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ <h4 id="clean_data" class="doc_header"><code>clean_data</code><a href="https://g


<div class="output_markdown rendered_html output_subarea ">
<h4 id="get_data" class="doc_header"><code>get_data</code><a href="https://github.com/jovsa/jovsatools/tree/master/jovsatools/gdrive_activity_tracking.py#L210" class="source_link" style="float:right">[source]</a></h4><blockquote><p><code>get_data</code>(<strong><code>page_size</code></strong>, <strong><code>loc</code></strong>, <strong><code>actor_names</code></strong>, <strong><code>checks</code></strong>)</p>
<h4 id="get_data" class="doc_header"><code>get_data</code><a href="https://github.com/jovsa/jovsatools/tree/master/jovsatools/gdrive_activity_tracking.py#L209" class="source_link" style="float:right">[source]</a></h4><blockquote><p><code>get_data</code>(<strong><code>page_size</code></strong>, <strong><code>loc</code></strong>, <strong><code>actor_names</code></strong>, <strong><code>checks</code></strong>)</p>
</blockquote>

</div>
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
<div class="cell border-box-sizing text_cell rendered"><div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h3 id="Usefull-Links">Usefull Links<a class="anchor-link" href="#Usefull-Links"> </a></h3><ul>
<li><p><a href="jovsa.github.io/jsmltools/design_document/">Design document</a>: outlines the choices, condiderations and tradeoffs made</p>
<li><p><a href="https://jovsa.github.io/jovsatools/design_document/">Design document</a>: outlines the choices, condiderations and tradeoffs made</p>
</li>
<li><p><a href="https://github.com/jovsa/jsmltools/blob/master/Makefile">Usefull commands</a>: when running things locally</p>
<li><p><a href="https://github.com/jovsa/jovsatools/blob/master/Makefile">Usefull commands</a>: when running things locally</p>
</li>
<li><p>Link to <a href="https://jovsa.github.io/jovsatools">documentation</a></p>
</li>
Expand Down
5 changes: 4 additions & 1 deletion jovsatools/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
__version__ = "0.0.2"
__version__ = "0.0.8"

# TODO (jovsa): make this more automated. Don't want to import every module
from . import gdrive_activity_tracking
2 changes: 0 additions & 2 deletions jovsatools/gdrive_activity_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,12 +206,10 @@ def clean_data(data, actor_names):
data['actor_name'] = data.apply(lambda x: identify_actor(x['actor'], actor_names), axis=1)
return data


def get_data(page_size, loc, actor_names, checks):
data = get_drive_activity(page_size, loc)
data = clean_data(data, actor_names)

# run checks
check_data(data, checks, actor_names)

return data
150 changes: 0 additions & 150 deletions jovsatools/google_activity_tracking.py

This file was deleted.

150 changes: 0 additions & 150 deletions jovsatools/google_drive_activity_tracking.py

This file was deleted.

Loading

0 comments on commit 606d04d

Please sign in to comment.