Skip to content

Commit

Permalink
bump version, add twine to dev requirements
Browse files Browse the repository at this point in the history
- fix automated deploy
- minor .dockerignore update
  • Loading branch information
casperdcl committed Jun 19, 2019
1 parent 8958011 commit 5fdf489
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ snapcraft.yaml: .meta/.snapcraft.yml

.dockerignore: .gitignore
cat $^ > "$@"
echo -e ".git" > "$@"
echo ".git" >> "$@"
git clean -xdn | sed -nr 's/^Would remove (.*)$$/\1/p' >> "$@"

distclean:
Expand Down
2 changes: 1 addition & 1 deletion gitfame/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
__all__ = ["__version__"]

# major, minor, patch, -extra
version_info = 1, 9, 0
version_info = 1, 9, 1

# Nice string for the version
__version__ = '.'.join(map(str, version_info))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def cythonize(*args, **kwargs):

extras_require = dict(yaml=['pyyaml'], tabulate=[])
extras_require['full'] = list(set(sum(extras_require.values(), ['tqdm'])))
extras_require['dev'] = list(set(extras_require['full'] + ['py-make>=0.1.0']))
extras_require['dev'] = list(set(extras_require['full'] + ['py-make>=0.1.0', 'twine']))

README_rst = ''
fndoc = os.path.join(src_dir, 'README.rst')
Expand Down

0 comments on commit 5fdf489

Please sign in to comment.