Omit typing version twice

pull/17/head
Psynosaur 2019-09-16 17:49:16 +02:00
rodzic 5d94c9244c
commit fb562a6f73
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -15,7 +15,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import sys
from NanoVNASaver.NanoVNASaver import NanoVNASaver
if sys.version_info < (3, 7):
print("You need at least Python 3.7 for this application!")
if sys.version_info[0] < 3:
@ -35,7 +35,7 @@ with open("README.md", "r") as fh:
setup(
name='NanoVNASaver',
url='https://github.com/mihtjel/nanovna-saver',
version='0.0.9',
version=NanoVNASaver.version,
author='Rune B. Broberg',
author_email='',
packages=find_packages(),