Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/cpp-project-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ default_context:
readthedocs: "Yes"
doxygen: "Yes"
cxx_minimum_standard: "20"
python_bindings: "No"
python_bindings: "None"
pypi_release: "No"
codecovio: "Yes"
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checking out the cookie cutter repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:

steps:
- name: Checking out the cookie cutter repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checking out the cookie cutter repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sync-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:

steps:
- name: Checkout the cookiecutter repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: cookiecutter-repository

- name: Install cookiecutter
run: pip install cookiecutter
- name: Install cookiecutter and pre-commit
run: pip install cookiecutter pre-commit

- name: Set up git identity
run: |
Expand All @@ -42,7 +42,7 @@ jobs:
run: tree -a -I ".git" .

- name: Checkout target repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ssciwr/cpp-project-template
ref: main
Expand Down
4 changes: 2 additions & 2 deletions cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"local_extensions.CurrentDateExtension"
],
"__python_module": "{{ cookiecutter|modname }}",
"_catch_version": "3.13.0",
"_cibuildwheel_version": "3.4.1"
"_catch_version": "3.15.1",
"_cibuildwheel_version": "4.1.0"
}
Loading