Skip to content

Update from copier (2025-06-17T14:48:19) #43

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

Merged
merged 1 commit into from
Jun 17, 2025
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 .copier-answers.yml → .copier-answers.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: d56cb12
_commit: 5c63cb2
_src_path: https://github.com/python-project-templates/base.git
add_extension: python
email: t.paine154@gmail.com
Expand Down
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,11 @@ docs/* linguist-documentation
*.ipynb linguist-documentation
Makefile linguist-documentation

<<<<<<< before updating
* text=auto eol=lf
=======
*.md text=auto eol=lf
*.py text=auto eol=lf
*.toml text=auto eol=lf
*.yaml text=auto eol=lf
>>>>>>> after updating
8 changes: 0 additions & 8 deletions .github/dependabot.yml → .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,3 @@ updates:
labels:
- "lang: python"
- "part: dependencies"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
labels:
- "lang: javascript"
- "part: dependencies"
16 changes: 3 additions & 13 deletions .github/workflows/build.yml → .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest]
python-version: ["3.11"]

steps:
- uses: actions/checkout@v4
Expand All @@ -53,15 +53,7 @@ jobs:

- name: Test
run: make coverage
if: matrix.os != 'windows-latest'

- name: Test
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
make coverage
shell: cmd
if: matrix.os == 'windows-latest'


- name: Upload test results (Python)
uses: actions/upload-artifact@v4
with:
Expand All @@ -73,7 +65,6 @@ jobs:
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: '**/junit.xml'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'

- name: Upload coverage
uses: codecov/codecov-action@v5
Expand All @@ -87,4 +78,3 @@ jobs:
with:
name: dist-${{matrix.os}}
path: dist
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
File renamed without changes.
4 changes: 4 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,11 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

<<<<<<< before updating
Copyright [yyyy] [name of copyright owner]
=======
Copyright 2025 the hatch-cpp authors
>>>>>>> after updating

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Hatch plugin for C++ builds

[![Build Status](https://github.com/python-project-templates/hatch-cpp/actions/workflows/build.yml/badge.svg?branch=main&event=push)](https://github.com/python-project-templates/hatch-cpp/actions/workflows/build.yml)
[![Build Status](https://github.com/python-project-templates/hatch-cpp/actions/workflows/build.yaml/badge.svg?branch=main&event=push)](https://github.com/python-project-templates/hatch-cpp/actions/workflows/build.yaml)
[![codecov](https://codecov.io/gh/python-project-templates/hatch-cpp/branch/main/graph/badge.svg)](https://codecov.io/gh/python-project-templates/hatch-cpp)
[![License](https://img.shields.io/github/license/python-project-templates/hatch-cpp)](https://github.com/python-project-templates/hatch-cpp)
[![PyPI](https://img.shields.io/pypi/v/hatch-cpp.svg)](https://pypi.python.org/pypi/hatch-cpp)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ replace = 'version = "{new_version}"'

[tool.check-manifest]
ignore = [
".copier-answers.yml",
".copier-answers.yaml",
"Makefile",
"docs/**/*",
]
Expand Down
Loading