Skip to content

Commit c5fc34c

Browse files
committed
fix: 🐛 generate loader.so
`from setuptools import setup` must be before Extension
1 parent 9c831e2 commit c5fc34c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyencrypt/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import os
22
from pathlib import Path
33

4-
from Cython.Build import cythonize
54
from setuptools import setup
5+
from Cython.Build import cythonize
66

77
path = Path(os.getcwd()) / 'encrypted' / 'loader.py'
88
setup(ext_modules=cythonize(path.as_posix()), )

0 commit comments

Comments
 (0)