We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11a2a08 commit 5611987Copy full SHA for 5611987
setup.py
@@ -42,16 +42,16 @@
42
)
43
cmdclass['js'] = combine_commands(
44
install_npm(
45
- path=HERE/'js',
46
- build_dir=HERE/'name'/'static',
47
- source_dir=HERE/'js',
+ path=str(HERE/'js'),
+ build_dir=str(HERE/'name'/'static'),
+ source_dir=str(HERE/'js'),
48
build_cmd='build:all'
49
),
50
ensure_targets([
51
- name + '/static/extension.js',
52
- name + '/static/index.js',
53
- 'js/src/core/BufferAttribute.autogen.js',
54
- name + '/core/BufferAttribute_autogen.py',
+ str(HERE/name/'static'/'extension.js'),
+ str(HERE/name/'static'/'index.js'),
+ str(HERE/'js'/'src'/'core'/'BufferAttribute.autogen.js'),
+ str(HERE/name/'core'/'BufferAttribute_autogen.py'),
55
]),
56
57
0 commit comments