kopia lustrzana https://github.com/micropython/micropython-lib
copy: Add workaround against loading copy from current dir when publishing.
rodzic
5cd6cf494c
commit
0b37602a02
|
@ -1,3 +1,7 @@
|
||||||
|
import sys
|
||||||
|
# Remove current dir from sys.path, otherwise distutils will peek up our
|
||||||
|
# copy module instead of system.
|
||||||
|
sys.path.pop(0)
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name='micropython-copy',
|
setup(name='micropython-copy',
|
||||||
|
|
Ładowanie…
Reference in New Issue