Skip to content
This repository has been archived by the owner on Oct 26, 2023. It is now read-only.

Commit

Permalink
Merge pull request #155 from lathama/package-version
Browse files Browse the repository at this point in the history
Use package version in __init__.py
  • Loading branch information
psychomario committed Jun 29, 2017
2 parents b29944c + 7864992 commit cf19bea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pypxe/__init__.py
@@ -1 +1 @@
__version__ = '1.6'
__version__ = '1.7.2'
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -3,6 +3,8 @@
from setuptools import setup, find_packages
from sys import version_info, exit

import pypxe

deps = []

# Python 3 unsupported
Expand All @@ -15,7 +17,7 @@
deps.append('argparse')

setup(name='PyPXE',
version='1.7.2',
version=pypxe.__version__,
description='Pure Python2 PXE (DHCP-(Proxy)/TFTP/HTTP/NBD) Server',
url='https://github.com/psychomario/PyPXE',
license='MIT',
Expand Down

0 comments on commit cf19bea

Please sign in to comment.