Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit 8e45b36

Browse files
authored
Merge pull request #4 from DerwenAI/update
prep release
2 parents da9eea3 + 90ba486 commit 8e45b36

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# `goedwig` changelog
2+
3+
## 0.1.0
4+
5+
2021-10-10
6+
7+
* initial commit

bin/push_pypi.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash -e
2+
3+
rm -rf dist
4+
python setup.py sdist bdist_wheel
5+
twine upload --verbose dist/*

goedwig/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
from git import Repo # type: ignore # pylint: disable=E0401
1212

1313
repo_path = pathlib.Path(dirname(__file__))
14-
repo = Repo(repo_path.parents[0].parents[0])
14+
repo = Repo(repo_path.parents[0])
1515
__version__ = str(repo.tags[0])

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
GitPython >= 3.1
12
icecream >= 2.1

sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
if __name__ == "__main__":
15-
#print(goedwig.__version__)
15+
print(goedwig.__version__)
1616

1717
ast_path = pathlib.Path("dat/cyp") / "q1.tsv"
1818

0 commit comments

Comments
 (0)