From 4837a99ac650669dbe31edc4e6e3f6dc620a6e0f Mon Sep 17 00:00:00 2001 From: cclecle Date: Sun, 19 Mar 2023 18:46:52 +0000 Subject: [PATCH] fix deps --- Jenkinsfile | 3 +-- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 102c075..264366e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -175,8 +175,7 @@ pipeline { |__EOWRAPPER__ """.stripMargin()) - // using setuptools_git_versioning to get the generated version number based on Git tags and logs - // TODO: read dev_template from toml + // get current (or bumped) version number from git history PY_PROJECT_VERSION = sh(script: """#!/bin/sh - |. ~/TOOLS_ENV/bin/activate |exec python - << '__EOWRAPPER__' diff --git a/pyproject.toml b/pyproject.toml index fb3f01f..3626904 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,6 +36,7 @@ classifiers = [ ] dependencies = [ 'importlib-metadata; python_version<"3.9"', + 'packaging' ] dynamic = ["version"] -- 2.47.3