fake-pybricks: don't quote strings in setup.cfg

this is an ini file, not a python file

also run `python3 versioneer.py setup` to apply changes
This commit is contained in:
David Lechner
2019-01-24 19:51:33 -06:00
parent 79056f1092
commit b3f9ae659e
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -41,8 +41,8 @@ def get_config():
cfg = VersioneerConfig()
cfg.VCS = "git"
cfg.style = "pep440"
cfg.tag_prefix = "'v'"
cfg.parentdir_prefix = "'fake-pybricks-'"
cfg.tag_prefix = "v"
cfg.parentdir_prefix = "fake-pybricks-"
cfg.versionfile_source = "pybricks/_version.py"
cfg.verbose = False
return cfg
+2 -2
View File
@@ -8,5 +8,5 @@ VCS = git
style = pep440
versionfile_source = pybricks/_version.py
versionfile_build = pybricks/_version.py
tag_prefix = 'v'
parentdir_prefix = 'fake-pybricks-'
tag_prefix = v
parentdir_prefix = fake-pybricks-