Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version in setup and align with module. #902

Merged
merged 1 commit into from
Jul 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions donkeycar/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import sys
from pyfiglet import Figlet
import logging
logging.basicConfig(level=logging.INFO)

__version__ = '4.3.0'
logging.basicConfig(level=logging.INFO)
f = Figlet(font='speed')
__version__ = '4.3.0'


print(f.renderText('Donkey Car'))
print(f'using donkey v{__version__} ...')
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os

from setuptools import find_packages, setup
from donkeycar import __version__


# include the non python files
Expand All @@ -24,7 +25,7 @@ def package_files(directory, strip_leading):
long_description = fh.read()

setup(name='donkeycar',
version='4.2.0',
version=__version__,
long_description=long_description,
description='Self driving library for python.',
url='https://github.com/autorope/donkeycar',
Expand Down