Skip to content

Commit

Permalink
no more alpha software
Browse files Browse the repository at this point in the history
  • Loading branch information
daitangio committed Jan 16, 2020
1 parent bab3cf4 commit bc6474f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
@@ -1,4 +1,5 @@
dfe3209 (HEAD -> master, tag: v1.0.1) Changelog supports auto-tagging+run support one extra quoted params
bab3cf4 (HEAD -> master, tag: v1.0.2) better CHANGELOG
dfe3209 (tag: v1.0.1) Changelog supports auto-tagging+run support one extra quoted params
c064c2b test changelog and tagging
b46b054 CHANGELOG test
11b3e91 (tag: v1.0.0) Minor fixes
Expand Down
4 changes: 1 addition & 3 deletions README.md
@@ -1,5 +1,3 @@
ALPHA QUALITY v1.0.0
*This library is still alpha quality software*

# pybash
Idempotent and *minimal* python 3 library for rapid scripting.
Expand All @@ -23,7 +21,7 @@ The run() function is very handy to fire direct command, like you would do in a
Note: For complex tasks, take alook at GNU Make

# Launch example

To run the examples set PYTHONPATH to <pybash-path>/pybash/src
Here an example of what happen if you run twice the *same* script:

$ python examples/stepByStep.py
Expand Down
3 changes: 1 addition & 2 deletions examples/complex_example.py
Expand Up @@ -8,11 +8,10 @@
"""
import sys, os

sys.path.append(os.path.dirname(os.path.realpath(__file__)) + "/../src")
from pybash import *

from pathlib import Path
import os, re,logging
import re,logging

def demo_python_builder(fname):
with open(fname,"w") as f:
Expand Down
1 change: 0 additions & 1 deletion examples/stepByStep.py
@@ -1,7 +1,6 @@
#!/usr/bin/env python
import sys, os

sys.path.append(os.path.dirname(os.path.realpath(__file__)) + "/../src")
from pybash import *

from pathlib import Path
Expand Down

0 comments on commit bc6474f

Please sign in to comment.