Skip to content

Commit

Permalink
DEV: Updates version to 0.25.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jfkirk committed Oct 18, 2018
1 parent b98542c commit b026ecf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@

from os import path


def parse_requirements(filename):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.startswith("#")]

here = path.abspath(path.dirname(__file__))
install_reqs = parse_requirements(path.join(here, 'requirements.txt'))
install_reqs = parse_requirements('requirements.txt')

setup(
name='tensorrec',
packages=['tensorrec'],
version='0.25.6',
version='0.25.7',
description='A TensorFlow recommendation algorithm and framework in Python.',
author='James Kirk',
author_email='james.f.kirk@gmail.com',
Expand Down

0 comments on commit b026ecf

Please sign in to comment.