diff --git a/Taskfile.yml b/Taskfile.yml index b0135038c..256898d55 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -16,7 +16,7 @@ vars: G_WEBUI_NODEJS_BIN_DIR: "{{.G_WEBUI_NODEJS_BUILD_DIR}}/bin" # Versions - G_PACKAGE_VERSION: "0.0.3-dev" + G_PACKAGE_VERSION: "0.2.0-dev" tasks: default: diff --git a/components/clp-package-utils/pyproject.toml b/components/clp-package-utils/pyproject.toml index 35d8c78cf..25672d84a 100644 --- a/components/clp-package-utils/pyproject.toml +++ b/components/clp-package-utils/pyproject.toml @@ -3,7 +3,7 @@ requires-python = ">= 3.8" [tool.poetry] name = "clp-package-utils" -version = "0.0.3-dev" +version = "0.2.0-dev" description = "Utilities for the CLP package." authors = ["YScope Inc. "] readme = "README.md" diff --git a/components/clp-py-utils/pyproject.toml b/components/clp-py-utils/pyproject.toml index 88c5dce26..4e827b926 100644 --- a/components/clp-py-utils/pyproject.toml +++ b/components/clp-py-utils/pyproject.toml @@ -3,7 +3,7 @@ requires-python = ">= 3.8" [tool.poetry] name = "clp-py-utils" -version = "0.0.3-dev" +version = "0.2.0-dev" description = "Utilities for other Python packages in CLP." authors = ["YScope Inc. "] readme = "README.md" diff --git a/components/core/src/clp/version.hpp b/components/core/src/clp/version.hpp index dbea42c32..06f5a1a74 100644 --- a/components/core/src/clp/version.hpp +++ b/components/core/src/clp/version.hpp @@ -2,7 +2,7 @@ #define CLP_VERSION_HPP namespace clp { -constexpr char cVersion[] = "0.0.3-dev"; +constexpr char cVersion[] = "0.2.0-dev"; } // namespace clp #endif // CLP_VERSION_HPP diff --git a/components/core/src/glt/version.hpp b/components/core/src/glt/version.hpp index 15062659c..3577237f9 100644 --- a/components/core/src/glt/version.hpp +++ b/components/core/src/glt/version.hpp @@ -2,7 +2,7 @@ #define GLT_VERSION_HPP namespace glt { -constexpr char cVersion[] = "0.0.3-dev"; +constexpr char cVersion[] = "0.2.0-dev"; } // namespace glt #endif // GLT_VERSION_HPP diff --git a/components/job-orchestration/pyproject.toml b/components/job-orchestration/pyproject.toml index c6581cc61..9150b2fd9 100644 --- a/components/job-orchestration/pyproject.toml +++ b/components/job-orchestration/pyproject.toml @@ -3,7 +3,7 @@ requires-python = ">= 3.8" [tool.poetry] name = "job-orchestration" -version = "0.0.3-dev" +version = "0.2.0-dev" description = "Scheduler and worker cluster for CLP's distributed architecture." authors = ["YScope Inc. "] readme = "README.md" diff --git a/components/package-template/src/requirements-pre-3.7.txt b/components/package-template/src/requirements-pre-3.7.txt deleted file mode 100644 index 60f564425..000000000 --- a/components/package-template/src/requirements-pre-3.7.txt +++ /dev/null @@ -1 +0,0 @@ -dataclasses==0.8 \ No newline at end of file diff --git a/config/build-clp-package.yaml b/config/build-clp-package.yaml deleted file mode 100644 index 6701d1c67..000000000 --- a/config/build-clp-package.yaml +++ /dev/null @@ -1,16 +0,0 @@ -working_dir: "out" -version: "0.0.1" -artifact_name: "clp-package-ubuntu-focal" -build_parallelism: 0 # 0 -> attempt to compile with available cores on the machine -builder_image: "ghcr.io/y-scope/clp/clp-core-dependencies-x86-ubuntu-focal:main" -components: - - name: "package-template" - type: "local" - - name: "job-orchestration" - type: "local" - - name: "clp-py-utils" - type: "local" - - name: "clp-package-utils" - type: "local" - - name: "core" - type: "local" diff --git a/lint-tasks.yml b/lint-tasks.yml index 060f08122..a8f14afdb 100644 --- a/lint-tasks.yml +++ b/lint-tasks.yml @@ -98,7 +98,7 @@ tasks: cmds: - |- . "{{.G_LINT_VENV_DIR}}/bin/activate" - yamllint \ + yamllint --strict \ .github \ .yamllint.yml \ components/core/.clang-format \