Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SCons als Build-System verwenden #771

Merged
merged 39 commits into from
Sep 17, 2023
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
5ba88ef
Add a build script that creates a virtual environment and triggers a …
michael-rapp Sep 5, 2023
5b2708f
Add build target for formatting Python code.
michael-rapp Sep 5, 2023
325bdf0
Add build target for checking the Python code style.
michael-rapp Sep 5, 2023
e4d4610
Remove unnecessary pass statement.
michael-rapp Sep 5, 2023
2560524
Fix Pylint warnings.
michael-rapp Sep 5, 2023
6efe0de
Add missing comments.
michael-rapp Sep 5, 2023
1eafa09
Add build target for formatting C++ code.
michael-rapp Sep 5, 2023
2bebe79
Add build target for checking the C++ code style.
michael-rapp Sep 5, 2023
4cf064c
Exit build if any invalid targets are given.
michael-rapp Sep 5, 2023
98983de
The class BuildModule does not override the property "build_dir" anym…
michael-rapp Sep 5, 2023
2ce4681
Add build target for installing runtime dependencies.
michael-rapp Sep 5, 2023
e8e107f
Add build target for compiling the C++ code.
michael-rapp Sep 5, 2023
4f7d308
Add build target for compiling the Cython code.
michael-rapp Sep 5, 2023
4a925d4
Add build targets for removing C++ and Cython build files.
michael-rapp Sep 5, 2023
38046ba
Add build target for installing shared libraries into the source tree.
michael-rapp Sep 5, 2023
f90e5bd
Add build target for installing extension modules into the source tree.
michael-rapp Sep 5, 2023
9a6ac9a
Add build targets for removing shared libraries and extension modules…
michael-rapp Sep 5, 2023
7558e27
Add build targets for building and installing wheel packages.
michael-rapp Sep 6, 2023
c21485d
Add build target for removing wheel packages.
michael-rapp Sep 6, 2023
42cc7f8
Add build target for running automated tests.
michael-rapp Sep 6, 2023
191b125
Edit isort config.
michael-rapp Sep 6, 2023
dd51efe
A build targets for generating the documentation.
michael-rapp Sep 6, 2023
55f3d7a
A build targets for removing the documentation.
michael-rapp Sep 6, 2023
23a92bf
Specify the default target.
michael-rapp Sep 6, 2023
3206fe9
Remove build dependencies from requirements.txt file.
michael-rapp Sep 6, 2023
5027982
Edit .gitignore file.
michael-rapp Sep 6, 2023
7cb1747
Use new build system for Linux and MacOS builds in Github workflows.
michael-rapp Sep 10, 2023
b7efef4
Fix command for activating virtual environment.
michael-rapp Sep 10, 2023
168d87e
Explicitly specify Python version.
michael-rapp Sep 10, 2023
2dd49e0
Install Roboto font before generating the documentation.
michael-rapp Sep 10, 2023
7ba4faa
Add bash script for running the build system on Windows
michael-rapp Sep 13, 2023
f2216f7
Use new build system for Windows builds in Github workflows.
michael-rapp Sep 13, 2023
ec5fb2d
Omit argument "--enable-virtualenv" when running SCons.
michael-rapp Sep 13, 2023
9decf14
Set exit code in build scripts.
michael-rapp Sep 13, 2023
8f8ab8c
Update changelog.
michael-rapp Sep 13, 2023
57ae7ac
Update Github workflow for publishing packages on PyPi.
michael-rapp Sep 13, 2023
1390882
Remove Makefile.
michael-rapp Sep 13, 2023
5c3a45c
Fix invokation of programs not installed in the virtual environment.
michael-rapp Sep 13, 2023
aed82c2
Update documentation.
michael-rapp Sep 17, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update changelog.
michael-rapp committed Sep 13, 2023
commit 8f8ab8c079c8a5a67faade9646e4dd24f146c04e
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -24,6 +24,7 @@ A major update to the BOOMER algorithm that introduces the following changes.
* The documentation has been updated to a more modern theme supporting light and dark theme variants.
* A build option that allows to disable multi-threading support via OpenMP at compile-time has been added.
* The Python code is now checked for common issues by applying `pylint` via continuous integration.
* The Makefile has been replaced with wrapper scripts triggering a [SCons](https://scons.org/) build.

## Version 0.9.0 (Jul. 2nd, 2023)