diff --git a/pyfisch/wscript b/pyfisch/wscript index 99a4d1cc4273c77f9e8649a4d9a6c29512bb5c93..a7bcedb5e3ffdfe9bcccfe092e580e0d3b078915 100644 --- a/pyfisch/wscript +++ b/pyfisch/wscript @@ -20,7 +20,7 @@ def configure(cfg): def build(bld): - for hx_version in [1, 2, 3]: + for hx_version in [2, 3]: bld( target=f'pyfisch_vx_v{hx_version}', source='../include/fisch/vx/python_bindings.h', diff --git a/wscript b/wscript index e8795c6a556abc5004e98224e8d114892aeec19f..9966055bc695a73f9ab6ce8bc4f178e42f3b854b 100644 --- a/wscript +++ b/wscript @@ -110,7 +110,7 @@ def build(bld): install_path = '${PREFIX}/lib/ppu', ) - for hx_version in [1, 2, 3]: + for hx_version in [2, 3]: bld.shlib( source = bld.path.ant_glob('src/fisch/vx/**/*.cpp'), target = f'fisch_vx_v{hx_version}',