Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
82a04796
Unverified
Commit
82a04796
authored
2 years ago
by
Michael Kriese
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fix(manager:pip_requirements): declare git-tags datasource (#15444)
parent
03b28828
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/modules/manager/pip_requirements/index.ts
+2
-1
2 additions, 1 deletion
lib/modules/manager/pip_requirements/index.ts
with
2 additions
and
1 deletion
lib/modules/manager/pip_requirements/index.ts
+
2
−
1
View file @
82a04796
import
{
ProgrammingLanguage
}
from
'
../../../constants
'
;
import
{
GitTagsDatasource
}
from
'
../../datasource/git-tags
'
;
import
{
PypiDatasource
}
from
'
../../datasource/pypi
'
;
export
{
updateArtifacts
}
from
'
./artifacts
'
;
...
...
@@ -11,4 +12,4 @@ export const defaultConfig = {
fileMatch
:
[
'
(^|/)([
\\
w-]*)requirements
\\
.(txt|pip)$
'
],
};
export
const
supportedDatasources
=
[
PypiDatasource
.
id
];
export
const
supportedDatasources
=
[
PypiDatasource
.
id
,
GitTagsDatasource
.
id
];
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment