From 4accd7faa714d848ba22e7b390f954975ae4123e Mon Sep 17 00:00:00 2001 From: Ashutosh Varma Date: Wed, 23 Dec 2020 12:56:24 +0530 Subject: [PATCH] fix possible typo in build_ext --- src/cmdclass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmdclass.py b/src/cmdclass.py index ba1fa81a..758f7bb8 100644 --- a/src/cmdclass.py +++ b/src/cmdclass.py @@ -114,7 +114,7 @@ def run(self): # now locate _version.py in the new build/ directory and replace # it with an updated value target_versionfile = os.path.join(self.build_lib, - cfg.versionfile_source) + cfg.versionfile_build) print("UPDATING %s" % target_versionfile) write_to_version_file(target_versionfile, versions) cmds["build_ext"] = cmd_build_ext