From 9e02b95c1f7310550d0ba3d89639b44b72a17de9 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Mon, 22 Nov 2021 18:04:18 -0800 Subject: Python: Start 1D Support (#2582) * Python: Start 1D Support Start supporting 1D builds in Python. * Fix 1D: PML FillZero unused ... since PMLs are not yet supported in 1D. * BeamRelevant: Fix unused p_pos0 * FromTXYEFileLaserProfile: Not Impl in 1D * QED Schwinger: 1D not Implemented Fix unused warnings, add aborts. * 1D RealVect/IntVect: Initialization Use explicit scalar constructors, no braces. Fix warning in clang 10. * 1D NCI Filter: Fix unused members & Init Unimplemented, but throws warnings. * PSATD: 1D not Implemented - remove compile warnings - start porting some parts * NCIGodfreyFilter: Clean up 2D & Else --- Python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/setup.py') diff --git a/Python/setup.py b/Python/setup.py index 86330717c..8142a59e6 100644 --- a/Python/setup.py +++ b/Python/setup.py @@ -24,7 +24,7 @@ argparser.add_argument('--with-lib-dir', type=str, default=None, help='Install w args, unknown = argparser.parse_known_args() sys.argv = [sys.argv[0]] + unknown -allowed_dims = ["2d", "3d", "rz"] +allowed_dims = ["1d", "2d", "3d", "rz"] # Allow to control options via environment vars. # Work-around for https://github.com/pypa/setuptools/issues/1712 -- cgit v1.2.3