Skip to content

Commit eaf470b

Browse files
authored
Opensourcing (#11)
* Changes in order to make `snippet` public * Changed workflow name * fixing CI * fixed Job definition bug * ensure python tools get accessible
1 parent 69c3d30 commit eaf470b

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ install_dependencies: &install_dependencies
1010
command: |
1111
python3 -m venv venv
1212
. venv/bin/activate
13-
pip install -e .
14-
pip install green flake8 pyautoversion towncrier pytest twine==1.11
13+
sudo pip install -e .
14+
sudo pip install green flake8 pyautoversion towncrier pytest twine==1.11
1515
jobs:
1616
build:
1717
docker:
@@ -83,7 +83,7 @@ jobs:
8383
- run:
8484
name: autoversion
8585
command: |
86-
auto_version --config=scripts/autoversion.toml --release --news
86+
autoversion --config=scripts/autoversion.toml --release --news
8787
- run:
8888
name: Generate changelog
8989
command: towncrier --yes --name="" --version=$(cd ../../ && python setup.py --version)

src/snippet/_version.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
__version__ = '1.1.0'
1+
# This project's release version
2+
__version__ = '1.0.0'
3+
# This project's release commit hash
4+
COMMIT = ''

0 commit comments

Comments
 (0)