File tree Expand file tree Collapse file tree 5 files changed +7
-6
lines changed
{{cookiecutter.repo_name}}/.github/workflows Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 59
59
docker images
60
60
sed -i -e 's/fail_ci_if_error: true/fail_ci_if_error: false/g' .github/workflows/gh-ci.yaml
61
61
cat .github/workflows/gh-ci.yaml
62
- act --job main-tests -- platform ubuntu-latest=act-conda -s CODECOV_TOKEN=${{ inputs.CODECOV_TOKEN }} -p=false
62
+ act --platform ubuntu-latest=act-conda -s CODECOV_TOKEN=${{ inputs.CODECOV_TOKEN }} -p=false
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ defaults:
19
19
env :
20
20
ARTIFACT_NAME : demo-mdakit-repos
21
21
OUTPUT_DIRECTORY : /home/runner/example_outputs
22
- OUTPUT_COOKIE_SUBDIRECTORY : TestMDAKit_with_host_MDAnalysis_condaforge-deps_and_ReadTheDocs/mdakit-cookie
22
+ OUTPUT_COOKIE_SUBDIRECTORY : TestMDAKit_with_host_MDAnalysis_condaforge-deps_and_ReadTheDocs/mdakit-Cookie
23
23
GH_USER : github-actions
24
24
GH_EMAIL : " github-action@users.noreply.github.com"
25
25
GH_REPOSITORY : " github.com/${{ github.repository }}.git"
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ The rules for this file:
30
30
31
31
### Added
32
32
<!-- New added features -->
33
- - Fixed ModuleNotFound after installation (Issue #113 , PR #115 )
34
33
- Add black configurartion to ` pyproject.toml ` (Issue #73 , PR #75 )
35
34
- Cookiecutter version dependency (Issue #33 , PR #46 )
36
35
- Configuration files for external hooks (PR #9 )
@@ -43,6 +42,8 @@ The rules for this file:
43
42
44
43
### Fixed
45
44
<!-- Bug fixes -->
45
+ - Fixed pypi_check with lowercase (PR #118 , Issue #112 )
46
+ - Fixed ModuleNotFound after installation (Issue #113 , PR #115 )
46
47
- Fix cookie pypi_check test (PR #45 )
47
48
- Bump minimum Python version to 3.9 in line with CI build matrix (#70 )
48
49
- Propagate ` **kwargs ` to ` AnalysisBase ` (PR #66 )
Original file line number Diff line number Diff line change @@ -58,8 +58,8 @@ def test_write_outputs(
58
58
output_directory .mkdir (exist_ok = True )
59
59
kitter = CookiecutterMDAKit (
60
60
project_name = project_name ,
61
- repo_name = "mdakit-cookie " ,
62
- package_name = "cookiekit " ,
61
+ repo_name = "mdakit-Cookie " ,
62
+ package_name = "cookieKit " ,
63
63
github_username = "test-user-account" ,
64
64
github_host_account = github_host_account ,
65
65
description = description ,
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171
171
172
172
- name : Check package build
173
173
run : |
174
- DISTRIBUTION=$(ls -t1 dist/{{ cookiecutter.repo_name }}-*.tar.gz | head -n 1)
174
+ DISTRIBUTION=$(ls -t1 dist/{{ cookiecutter.repo_name.lower().replace('-', '_') }}-*.tar.gz | head -n 1)
175
175
test -n "${DISTRIBUTION}" || { echo "no distribution dist/{{ cookiecutter.repo_name }}-*.tar.gz found"; exit 1; }
176
176
echo "twine check $DISTRIBUTION"
177
177
twine check $DISTRIBUTION
You can’t perform that action at this time.
0 commit comments