File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ set -eu -o pipefail
1313# we are in the source directory, .github/
1414this_dir=$( cd $( dirname $0 ) && pwd)
1515
16- pybind11-stubgen --exit-code --enum-class-locations=" GrowthStrategy:amrex.space1d" -o ${this_dir} /../src/ amrex.space1d
17- pybind11-stubgen --exit-code --enum-class-locations=" GrowthStrategy:amrex.space2d" -o ${this_dir} /../src/ amrex.space2d
18- pybind11-stubgen --exit-code --enum-class-locations=" GrowthStrategy:amrex.space3d" -o ${this_dir} /../src/ amrex.space3d
16+ pybind11-stubgen --sort-by=definition -- exit-code --enum-class-locations=" GrowthStrategy:amrex.space1d" -o ${this_dir} /../src/ amrex.space1d
17+ pybind11-stubgen --sort-by=definition -- exit-code --enum-class-locations=" GrowthStrategy:amrex.space2d" -o ${this_dir} /../src/ amrex.space2d
18+ pybind11-stubgen --sort-by=definition -- exit-code --enum-class-locations=" GrowthStrategy:amrex.space3d" -o ${this_dir} /../src/ amrex.space3d
Original file line number Diff line number Diff line change 6262 ccache -z
6363
6464 python3 -m pip install -U pip setuptools[core] wheel
65- python3 -m pip install -U mpi4py pytest pybind11-stubgen pre-commit
65+ python3 -m pip install -U mpi4py pytest pre-commit
66+ python3 -m pip install -U "pybind11-stubgen @ git+https://github.com/ax3l/pybind11-stubgen.git@fix-class-sorting"
6667 cmake -S . -B build -DAMReX_SPACEDIM="1;2;3" -DAMReX_EB=ON -DpyAMReX_IPO=OFF
6768 cmake --build build -j 4 --target pip_install
6869
Original file line number Diff line number Diff line change 77breathe
88docutils >= 0.17.1
99numpy # in public APIs
10- pybind11-stubgen # type hints in pyi files
10+ pybind11-stubgen @ git+https://github.com/ax3l/pybind11-stubgen.git@fix-class-sorting # type hints in pyi files
1111pygments
1212recommonmark
1313# Attention: we need to track the resolution of
You can’t perform that action at this time.
0 commit comments