Skip to content

Commit

Permalink
downgrading to windows 2019w
Browse files Browse the repository at this point in the history
  • Loading branch information
fakufaku committed Aug 7, 2024
1 parent 5aa405e commit 332cd39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
#os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
#python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
os: [windows-latest]
os: [windows-2019]
python-version: [3.8, 3.9]
exclude:
- os: macos-latest
Expand Down
2 changes: 2 additions & 0 deletions pyroomacoustics/libroom_src/rir_builder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ void delay_sum(const py::buffer irs, const py::buffer delays, py::buffer output,
void fractional_delay(py::buffer out, const py::buffer time, size_t lut_gran,
size_t num_threads);

#include "rir_builder.cpp"

#endif // __RIR_BUILDER_HPP__
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __str__(self):
ext_modules = [
Extension(
"pyroomacoustics.libroom",
[os.path.join(libroom_src_dir, f) for f in ["libroom.cpp", "rir_builder.cpp"]],
[os.path.join(libroom_src_dir, f) for f in ["libroom.cpp"]],
depends=libroom_files,
include_dirs=[
".",
Expand Down

0 comments on commit 332cd39

Please sign in to comment.