Skip to content

Commit

Permalink
Merge pull request #8 from blackducksoftware/dev
Browse files Browse the repository at this point in the history
v1.0.7 - added Setuptools to supported PMs
  • Loading branch information
matthewb66 authored Jul 12, 2024
2 parents 57de388 + 746527b commit a2e7c58
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion detect_advisor/global_values.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Constants
advisor_version = "1.0.6"
advisor_version = "1.0.7"
detect_version = "9.X.0"

ext_list = {
Expand Down Expand Up @@ -515,6 +515,17 @@
" cannot be correctly inferred from its setup.py file.)\n"
},

'SETUPTOOLS':
{
'files': ['pyproject.toml'],
'exts': [],
'execs': ['pip', 'pip3'],
'exec_reqd': False,
'lock_files': [],
'lockfile_reqd': False,
'accuracy': 'LOW',
},

'PNPM':
{
'files': ['pnpm-lock.yaml'],
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "detect_advisor"
version = "1.0.6"
version = "1.0.7"
authors = [
{ name="Matthew Brady", email="[email protected]" },
]
Expand Down

0 comments on commit a2e7c58

Please sign in to comment.