diff --git a/setuptools_conda/setuptools_conda.py b/setuptools_conda/setuptools_conda.py index 0ada460..861c66d 100644 --- a/setuptools_conda/setuptools_conda.py +++ b/setuptools_conda/setuptools_conda.py @@ -649,7 +649,7 @@ def run(self): if self.from_wheel or self.from_downloaded_wheel: dist = [p for p in os.listdir(self.build_dir) if p.endswith('.whl')][0] else: - dist = f'{self.distribution.get_name()}-{self.VERSION}.tar.gz' + dist = f'{self.distribution.get_fullname()}.tar.gz' with open(os.path.join(self.build_dir, dist), 'rb') as f: sha256 = hashlib.sha256(f.read()).hexdigest()