Skip to content

Commit

Permalink
dropped auto git version
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubczakon committed Feb 9, 2019
1 parent 6e1749c commit e02a890
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 66 deletions.
2 changes: 1 addition & 1 deletion docs_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
oauthlib
PyJWT
neptune-cli
neptune-lib==0.1.1
neptune-lib
requests>=2.20.0
requests-oauthlib>=1.0.0
pandas
Expand Down
50 changes: 0 additions & 50 deletions git_version.py

This file was deleted.

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
oauthlib
PyJWT
neptune-cli
neptune-lib==0.1.2
neptune-lib
requests>=2.20.0
requests-oauthlib>=1.0.0
pandas
Expand Down
15 changes: 1 addition & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,6 @@

from setuptools import find_packages, setup

import git_version


def version():
try:
with open('VERSION') as f:
return f.readline().strip()
except IOError:
return '0.0.1'


def main():
root_dir = os.path.dirname(__file__)
Expand All @@ -20,7 +10,7 @@ def main():
requirements = [r.strip() for r in f]
setup(
name='neptune-contrib',
version=version(),
version='0.2.0',
description='Neptune Python library contributions',
author='neptune.ml',
author_email='contact@neptune.ml',
Expand All @@ -29,9 +19,6 @@ def main():
license='MIT License',
install_requires=requirements,
packages=find_packages(include=['neptunecontrib*']),
cmdclass={
'git_version': git_version.GitVersion,
}
)


Expand Down

0 comments on commit e02a890

Please sign in to comment.