Skip to content

Commit

Permalink
fix: initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Jun 7, 2023
1 parent 6b5cee9 commit 1a33102
Show file tree
Hide file tree
Showing 3 changed files with 1,183 additions and 104 deletions.
2 changes: 1 addition & 1 deletion .copier-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; do NOT edit manually
_commit: v0.8.3
_commit: v0.8.4
_src_path: gh:entelecheia/hyperfast-python-template
author: Young Joon Lee
build_and_release: true
Expand Down
103 changes: 0 additions & 103 deletions .tasks.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,67 +66,6 @@ help = "remove documentation artifacts"
sequence = ["clean-cov", "clean-pycache", "clean-build", "clean-docs"]
help = "remove build artifacts and coverage reports"

[tool.poe.tasks.version]
cmd = "semantic-release print-version --current"
help = "print the current version"

[tool.poe.tasks.next-version]
cmd = "semantic-release print-version --next"
help = "print the next version"

[tool.poe.tasks.changelog]
cmd = "semantic-release changelog --released"
help = "print the changelog for the current version"

[tool.poe.tasks.next-changelog]
cmd = "semantic-release changelog --unreleased"
help = "print the changelog for the next version"

[tool.poe.tasks.release-noop]
cmd = "semantic-release publish --noop -v DEBUG"
help = "run a dry-run of the release process"

[tool.poe.tasks.release-ci]
cmd = "semantic-release publish -v DEBUG -D commit_author='github-actions <action@github.com>'"
help = "run the release process in CI"

[tool.poe.tasks.prerelease-noop]
cmd = "semantic-release publish --noop -v DEBUG --prerelease"
help = "run a dry-run of the prerelease process"

[tool.poe.tasks.show-branches]
cmd = "git show-branch --list"
help = "show branches"

[tool.poe.tasks.show-tags]
cmd = "git tag --list"
help = "show tags"

[tool.poe.tasks.show-remotes]
cmd = "git remote --verbose"
help = "show remotes"

[tool.poe.tasks.show-refs]
cmd = "git show-ref"
help = "show refs"

[tool.poe.tasks.branch-checkout-upstream]
sequence = [
{ cmd = "git checkout -B ${branch}" },
{ cmd = "git push --set-upstream origin ${branch}" },
]
help = "create a new branch and push it to origin"
args = ["branch"]

[tool.poe.tasks.branch-checkout]
cmd = "git checkout ${branch}"
help = "checkout a branch"
args = ["branch"]

[tool.poe.tasks.main-checkout]
cmd = "git checkout main"
help = "checkout main"

[tool.poe.tasks.run]
cmd = "corprep"
help = "run the main program"
Expand Down Expand Up @@ -173,45 +112,3 @@ help = "update dependencies"
[tool.poe.tasks.lock]
cmd = "poetry lock"
help = "lock dependencies"

[tool.poe.tasks.git-lfs-install]
cmd = "git lfs install"
help = "git lfs install"

[tool.poe.tasks.git-lfs-track]
cmd = "git lfs track ${patterns}"
help = "git lfs track"
args = [
{ name = "patterns", default = "*.pdf" },
]

[tool.poe.tasks.git-lfs-migrate]
cmd = "git lfs migrate import --everything --include=${patterns}"
help = "git lfs migrate"
args = [
{ name = "patterns", default = "*.pdf" },
]

[tool.poe.tasks.git-add-submodule]
cmd = "git submodule add ${url} ${path}"
help = "git submodule add ${url} ${path}"
args = [
{ name = "url" },
{ name = "path" },
]

[tool.poe.tasks.git-init-submodule]
cmd = "git submodule update --init --recursive"
help = "git submodule update --init --recursive"

[tool.poe.tasks.git-update-submodule]
cmd = "git submodule update --recursive --remote"
help = "git submodule update --recursive --remote"

[tool.poe.tasks.poetry-disable-virtualenvs]
cmd = "poetry config virtualenvs.create false"
help = "Disable virtualenvs in poetry"

[tool.poe.tasks.poetry-enable-virtualenvs]
cmd = "poetry config virtualenvs.create true"
help = "Enable virtualenvs in poetry"
Loading

0 comments on commit 1a33102

Please sign in to comment.