Skip to content

Commit

Permalink
chore: renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalshaikh42 committed May 30, 2024
1 parent 127bedf commit 83780db
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id: release
with:
release-type: python
package-name: snakemake-executor-plugin-kubernetes
package-name: snakemake-executor-plugin-deeporigin

publish:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# snakemake-executor-plugin-kubernetes
# snakemake-executor-plugin-deeporigin

A snakemake executor plugin for submission of jobs to Kubernetes.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tool.poetry]
name = "snakemake-executor-plugin-kubernetes"
name = "snakemake-executor-plugin-deeporigin"
version = "0.1.5"
description = "A snakemake executor plugin for submission of jobs to Kubernetes"
authors = ["Johannes Koester <johannes.koester@uni-due.de>"]
authors = ["Bilal Shaikh <bilalshaikh42@gmail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/snakemake/snakemake-executor-plugin-kubernetes"
repository = "https://github.com/formiclabs/snakemake-executor-plugin-deeporigin"
documentation = "https://snakemake.github.io/snakemake-plugin-catalog/plugins/executor/kubernetes.html"
keywords = ["snakemake", "plugin", "executor", "cloud", "kubernetes"]

Expand All @@ -21,7 +21,7 @@ flake8 = "^6.1.0"
coverage = "^7.3.1"
pytest = "^7.4.1"
snakemake = {git = "https://github.com/snakemake/snakemake.git"}
snakemake-storage-plugin-s3 = "^0.2.7"
snakemake-storage-plugin-deeporigin = "^0.2.7"

[tool.coverage.run]
omit = [".*", "*/site-packages/*", "Snakefile"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ class ExecutorSettings(ExecutorSettingsBase):
pass_envvar_declarations_to_cmd=False,
auto_deploy_default_storage_provider=True,
)


# Required:
# Implementation of your executor
class Executor(RemoteExecutor):
Expand Down Expand Up @@ -434,7 +432,7 @@ def _kubernetes_retry(self, func):

UUID_NAMESPACE = uuid.uuid5(
uuid.NAMESPACE_URL,
"https://github.com/snakemake/snakemake-executor-plugin-kubernetes",
"https://github.com/formiclabs/snakemake-executor-plugin-deeporigin",
)


Expand Down

0 comments on commit 83780db

Please sign in to comment.