281 files + 23121 − 51032 Side-by-side Compare changes Side-by-side Inline Show whitespace changes Files 281 Some changes are not shown. For a faster browsing experience, only 55 of 281 files are shown. Download one of the files below to see all changes. .flake8 +4 −4 Original line number Original line Diff line number Diff line [flake8] [flake8] max-line-length=120 max-line-length=120 exclude=pystencils/jupyter.py, exclude=src/pystencils/jupyter.py, pystencils/plot.py src/pystencils/plot.py pystencils/session.py src/pystencils/session.py ignore = W293 W503 W291 C901 ignore = W293 W503 W291 C901 E741 .gitattributes 0 → 100644 +1 −0 Original line number Original line Diff line number Diff line src/pystencils/_version.py export-subst .gitignore +18 −2 Original line number Original line Diff line number Diff line __pycache__ __pycache__ .ipynb_checkpoints .ipynb_checkpoints .coverage .coverage* *.pyc *.pyc *.vti *.vti /build /build /dist /dist /*.egg-info *.egg-info .cache .cache _build _build /html_doc /.idea /.idea .vscode .cache .cache _local_tmp _local_tmp RELEASE-VERSION RELEASE-VERSION test-report src/pystencils/boundaries/createindexlistcython.c src/pystencils/boundaries/createindexlistcython.*.so tests/tmp tests/var tests/kerncraft_inputs/.2d-5pt.c_kerncraft/ tests/kerncraft_inputs/.3d-7pt.c_kerncraft/ report.xml coverage_report/ # macOS **/.DS_Store *.uuid .gitlab-ci.yml +278 −50 Original line number Original line Diff line number Diff line stages: stages: - pretest - test - test - nightly - docs - deploy - deploy # -------------------------- Templates ------------------------------------------------------------------------------------ # Base configuration for jobs meant to run at every commit .every-commit: rules: - if: $CI_PIPELINE_SOURCE != "schedule" # Configuration for jobs meant to run on each commit to pycodegen/pystencils/master .every-commit-master: rules: - if: '$CI_PIPELINE_SOURCE != "schedule" && $CI_PROJECT_PATH == "pycodegen/pystencils" && $CI_COMMIT_BRANCH == "master"' # Base configuration for jobs meant to run at a schedule .scheduled:
.flake8 +4 −4 Original line number Original line Diff line number Diff line [flake8] [flake8] max-line-length=120 max-line-length=120 exclude=pystencils/jupyter.py, exclude=src/pystencils/jupyter.py, pystencils/plot.py src/pystencils/plot.py pystencils/session.py src/pystencils/session.py ignore = W293 W503 W291 C901 ignore = W293 W503 W291 C901 E741
.gitattributes 0 → 100644 +1 −0 Original line number Original line Diff line number Diff line src/pystencils/_version.py export-subst
.gitignore +18 −2 Original line number Original line Diff line number Diff line __pycache__ __pycache__ .ipynb_checkpoints .ipynb_checkpoints .coverage .coverage* *.pyc *.pyc *.vti *.vti /build /build /dist /dist /*.egg-info *.egg-info .cache .cache _build _build /html_doc /.idea /.idea .vscode .cache .cache _local_tmp _local_tmp RELEASE-VERSION RELEASE-VERSION test-report src/pystencils/boundaries/createindexlistcython.c src/pystencils/boundaries/createindexlistcython.*.so tests/tmp tests/var tests/kerncraft_inputs/.2d-5pt.c_kerncraft/ tests/kerncraft_inputs/.3d-7pt.c_kerncraft/ report.xml coverage_report/ # macOS **/.DS_Store *.uuid
.gitlab-ci.yml +278 −50 Original line number Original line Diff line number Diff line stages: stages: - pretest - test - test - nightly - docs - deploy - deploy # -------------------------- Templates ------------------------------------------------------------------------------------ # Base configuration for jobs meant to run at every commit .every-commit: rules: - if: $CI_PIPELINE_SOURCE != "schedule" # Configuration for jobs meant to run on each commit to pycodegen/pystencils/master .every-commit-master: rules: - if: '$CI_PIPELINE_SOURCE != "schedule" && $CI_PROJECT_PATH == "pycodegen/pystencils" && $CI_COMMIT_BRANCH == "master"' # Base configuration for jobs meant to run at a schedule .scheduled: