File tree 8 files changed +22
-9
lines changed
8 files changed +22
-9
lines changed Original file line number Diff line number Diff line change 1
1
# Changes here will be overwritten by Copier
2
- _commit : 679102d
2
+ _commit : 573d8d6
3
3
_src_path : https://github.com/python-project-templates/base.git
4
4
add_extension : rust
5
5
Original file line number Diff line number Diff line change @@ -14,3 +14,12 @@ updates:
14
14
labels :
15
15
- " lang: python"
16
16
- " part: dependencies"
17
+
18
+ - package-ecosystem : " cargo"
19
+ directory : " /"
20
+ schedule :
21
+ interval : " monthly"
22
+ labels :
23
+ - " lang: rust"
24
+ - " part: dependencies"
25
+
Original file line number Diff line number Diff line change @@ -117,6 +117,8 @@ jobs:
117
117
run : |
118
118
make dist-py-wheel
119
119
make dist-check
120
+ env :
121
+ CIBW_ENVIRONMENT_MACOS : MACOSX_DEPLOYMENT_TARGET=11.0
120
122
if : matrix.os != 'ubuntu-latest'
121
123
122
124
- uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ format: fix
65
65
# ###############
66
66
# Other Checks #
67
67
# ###############
68
- .PHONY : check-manifest checks check annotate
68
+ .PHONY : check-manifest checks check
69
69
70
70
check-manifest : # # check python sdist manifest with check-manifest
71
71
check-manifest -v
@@ -75,9 +75,6 @@ checks: check-manifest
75
75
# alias
76
76
check : checks
77
77
78
- annotate : # # run python type annotation checks with mypy
79
- python -m mypy ./python_template_rust
80
-
81
78
# ########
82
79
# TESTS #
83
80
# ########
Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ A Rust-Python project template
11
11
## Overview
12
12
13
13
14
- > \ [ !NOTE\ ]
14
+ > [ !NOTE]
15
15
> This library was generated using [ copier] ( https://copier.readthedocs.io/en/stable/ ) from the [ Base Python Project Template repository] ( https://github.com/python-project-templates/base ) .
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ classifiers = [
18
18
" Programming Language :: Python :: Implementation :: CPython" ,
19
19
" Programming Language :: Python :: Implementation :: PyPy" ,
20
20
" Programming Language :: Python :: 3" ,
21
- " Programming Language :: Python :: 3.8" ,
22
21
" Programming Language :: Python :: 3.9" ,
23
22
" Programming Language :: Python :: 3.10" ,
24
23
" Programming Language :: Python :: 3.11" ,
@@ -77,6 +76,8 @@ ignore = [
77
76
" .copier-answers.yml" ,
78
77
" Makefile" ,
79
78
" setup.py" ,
79
+ " docs/**/*" ,
80
+ " rust/.config/*" ,
80
81
" rust/Cargo.lock" ,
81
82
" rust/README.md" ,
82
83
]
@@ -95,6 +96,7 @@ archs = "x86_64"
95
96
96
97
[tool .cibuildwheel .macos ]
97
98
archs = " x86_64 arm64"
99
+ environment = {MACOS_DEPLOYMENT_TARGET =11.0 }
98
100
99
101
[tool .cibuildwheel .windows ]
100
102
environment = {PATH =" $UserProfile\\ .cargo\b in;$PATH" }
Original file line number Diff line number Diff line change
1
+ [profile .default .junit ]
2
+ path = " junit.xml"
Original file line number Diff line number Diff line change @@ -29,12 +29,13 @@ checks: check
29
29
30
30
.PHONY : test tests test-ci tests-ci
31
31
test : # # run the tests
32
- cargo llvm-cov nextest
32
+ cargo llvm-cov nextest --cobertura --output-path junit.xml
33
+
33
34
# alias
34
35
tests : test
35
36
36
37
coverage :
37
- cargo llvm-cov --lcov --output-path coverage nextest
38
+ cargo llvm-cov nextest --lcov --output-path coverage
38
39
39
40
.PHONY : dist publish
40
41
dist : # # create dist
You can’t perform that action at this time.
0 commit comments