Skip to content

Commit

Permalink
Change version tag
Browse files Browse the repository at this point in the history
  • Loading branch information
TLCFEM committed Nov 23, 2023
1 parent 5d1c12f commit cba72e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
echo " app_info:" >> AppImageBuilder.yml
echo " id: io.github.tlcfem.vpmr" >> AppImageBuilder.yml
echo " name: vpmr" >> AppImageBuilder.yml
echo " version: ${{ env.VPMR_VERSION }}" >> AppImageBuilder.yml
echo " version: '${{ env.VPMR_VERSION }}'" >> AppImageBuilder.yml
echo " icon: vpmr" >> AppImageBuilder.yml
echo " exec: usr/bin/vpmr" >> AppImageBuilder.yml
echo " exec_args: \$@" >> AppImageBuilder.yml
Expand Down
2 changes: 2 additions & 0 deletions src/VPMR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,8 @@ std::tuple<std::vector<std::complex<double>>, std::vector<std::complex<double>>>
}

PYBIND11_MODULE(pyvpmr, m) {
m.doc() = "The VPMR Algorithm";

Check warning on line 467 in src/VPMR.cpp

View check run for this annotation

Codecov / codecov/patch

src/VPMR.cpp#L466-L467

Added lines #L466 - L467 were not covered by tests

m.def("vpmr", &vpmr_wrapper, pybind11::call_guard<pybind11::gil_scoped_release>(), pybind11::kw_only(), pybind11::arg("n") = 10, pybind11::arg("d") = 0, pybind11::arg("q") = 500, pybind11::arg("m") = 6, pybind11::arg("nc") = 4, pybind11::arg("e") = 1E-8, pybind11::arg("k") = "");

Check warning on line 469 in src/VPMR.cpp

View check run for this annotation

Codecov / codecov/patch

src/VPMR.cpp#L469

Added line #L469 was not covered by tests
}
#endif

0 comments on commit cba72e7

Please sign in to comment.