-
Notifications
You must be signed in to change notification settings - Fork 1
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
release #350
Merged
Merged
release #350
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
bab497d
ci: generate and push Python Gold Standard to py-gold branch of bisko…
boromir674 2d6dd5d
fix: adjust mkdocs configured template to follow the Gold Standard Sn…
boromir674 8fa3ec7
refactor(isort): apply isort
boromir674 e3a1229
refactor(black): apply black
boromir674 152d23b
refactor(ruff): apply ruff
boromir674 5b121dd
refactor(black): apply black
boromir674 35a04c2
test: fix building wheel and sdist from gen proj
boromir674 ca68a74
fix code
boromir674 3d301c6
refactor(black): apply black
boromir674 2b97f82
ci: allow a couple of more subprocess low severity cwe reported by ba…
boromir674 504468c
ci(gh): add GH Release Job in 'CI/CD Pipeline' Workflow
boromir674 900a126
empemeral: set Full Matrix Strategy to single Job for quick CI
boromir674 540dacb
empemeral: 'Power OFF' all CI Checks
boromir674 3ea25df
ci: allow checking for -rc tag regardless of top-level PYPI overide s…
boromir674 f9623e1
empemeral: do not 'need' test_suite for running gh_release Job, for q…
boromir674 b72778a
ci: pass git tag name, ie v2.2.1-rc in GH Release Workflow
boromir674 d67fb76
add comments
boromir674 be81a16
call Workflow with secret passing in
boromir674 f54e153
ci: pass PAT 'GH_TOKEN' in GH Release Workflow
boromir674 d92436e
add comments
boromir674 4df28fc
add comments
boromir674 fb85a66
set CI Pipeline to Prod settings
boromir674 a80d066
release(semantic_version): bump version to 2.2.1
boromir674 134fa42
docs: update changelog with the release's changes
boromir674 b7e0e65
test: fix Windows Test Suite
boromir674 db05e21
fix windows tests
boromir674 3662bf4
fix ci 'needs' wiring up
boromir674 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,3 +119,28 @@ jobs: | |
destination-repository-username: 'boromir674' | ||
target-branch: ${{ env.branch }} | ||
commit-message: 'apply Template from https://github.com/boromir674/cookiecutter-python-package' | ||
|
||
## GENERATE Python Gold Standard FROM TEMPLATE into gen/ ## | ||
# ROOT : gen/biskotaki/pyproject.toml | ||
- name: Generate Python Gold Standard Biskotaki from Template | ||
env: | ||
USER_CONFIG: tests/data/gold-standard.yml | ||
run: | | ||
echo " version: \"${{ env.PKG_VERSION }}\"" >> ${{ env.USER_CONFIG }} | ||
generate-python -o gen-gold --config-file "${{ env.USER_CONFIG }}" --no-input -f --offline | ||
|
||
## PUSH the Python Gold Standard to BISKOTAKI REPO ## | ||
- name: Push to dedicated branch in biskotaki repo | ||
# Pin to v1.7.2 -> 07c4d7b3def0a8ebe788a8f2c843a4e1de4f6900 | ||
uses: cpina/github-action-push-to-another-repository@07c4d7b3def0a8ebe788a8f2c843a4e1de4f6900 | ||
env: | ||
SSH_DEPLOY_KEY: ${{ secrets.SSH_GITHUB_KEY }} | ||
with: | ||
source-directory: 'gen-gold/biskotaki-gold-standard' | ||
destination-github-username: 'boromir674' | ||
destination-repository-name: 'biskotaki' | ||
user-email: [email protected] | ||
user-name: 'Konstantinos' | ||
destination-repository-username: 'boromir674' | ||
target-branch: py-gold | ||
commit-message: 'apply Template from https://github.com/boromir674/cookiecutter-python-package' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ build-backend = "poetry.core.masonry.api" | |
## Also renders on pypi as 'subtitle' | ||
[tool.poetry] | ||
name = "cookiecutter_python" | ||
version = "2.2.0" | ||
version = "2.2.1" | ||
description = "1-click Generator of Python Project, from Template with streamlined \"DevOps\" using a powerful CI/CD Pipeline." | ||
authors = ["Konstantinos Lampridis <[email protected]>"] | ||
maintainers = ["Konstantinos Lampridis <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
__version__ = '2.2.0' | ||
__version__ = '2.2.1' | ||
|
||
from . import _logging # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check notice
Code scanning / Bandit
Consider possible security implications associated with the subprocess module. Note test