Skip to content

Commit

Permalink
Preparing release v0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianWilhelm committed Jun 6, 2022
1 parent c4f8b5e commit 563c473
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/make-demo-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
run:
shell: bash -l {0}
steps:
- name: Clean Workspace
uses: AutoModality/action-clean@v1
- name: Checkout Repo
uses: actions/checkout@v2
with:
Expand Down
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Contributors

* Florian Wilhelm <florian.wilhelm@gmail.com>
* Anderson Bravalheri <andersonbravalheri@gmail.com>
* Sterling Baird <sterling.baird@icloud.com>
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========


Version 0.7.2
=============

- Fix inconsistency by renaming ``data/preprocessed`` to ``data/processed``.

Version 0.7.1
=============

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ Creating a data science project is then as easy as:
putup --dsproject my_ds_project
```

The flag `--dsproject` comprises additionally the flags `--markdown`, `--pre-commit` and `--no-skeleton`
for convenience.

<!-- pyscaffold-notes -->

Expand Down
2 changes: 1 addition & 1 deletion src/pyscaffoldext/dsproject/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def augment_cli(self, parser):

def activate(self, actions: List[Action]) -> List[Action]:
actions = Markdown().activate(actions)
# ^ Wrapping the Markdown extension is more reliable then including it via CLI.
# ^ Wrapping the Markdown extension is more reliable than including it via CLI.
# This way we can trust the activation order for registering actions,
# and the Python API is guaranteed to work, even if the user does not include
# Markdown in the list of extensions.
Expand Down

0 comments on commit 563c473

Please sign in to comment.