Skip to content

Commit

Permalink
Merge pull request #50 from acroz/auto-version
Browse files Browse the repository at this point in the history
Automatically determine version from git commit
  • Loading branch information
acroz authored Jan 18, 2019
2 parents 123d50b + f350d02 commit 6c67e42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ class IntegrationTests(PyTest):

setup(
name="livy",
version="0.4.1",
description="A Python client for Apache Livy",
long_description=README.read_text(),
packages=["livy"],
Expand All @@ -56,7 +55,8 @@ class IntegrationTests(PyTest):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
setup_requires=["wheel"],
use_scm_version={"version_scheme": "post-release"},
setup_requires=["wheel", "setuptools_scm"],
cmdclass={"test": UnitTests, "it": IntegrationTests},
install_requires=[
"dataclasses; python_version<'3.7'",
Expand Down

0 comments on commit 6c67e42

Please sign in to comment.