Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
conda
fsl-ci-rules
Commits
9e3b466d
Commit
9e3b466d
authored
Feb 04, 2021
by
Paul McCarthy
🚵
Browse files
BF: Strip comparison operators from version strings
parent
23f16abf
Changes
2
Hide whitespace changes
Inline
Side-by-side
fsl_ci/__init__.py
View file @
9e3b466d
...
...
@@ -17,7 +17,7 @@ import contextlib as ctxlib
import
subprocess
as
sp
__version__
=
'0.5.
1
'
__version__
=
'0.5.
2
'
"""Current version of the fsl-ci-rules."""
...
...
fsl_ci/scripts/update_conda_recipe.py
View file @
9e3b466d
...
...
@@ -125,7 +125,7 @@ def get_requirements(meta):
ver
=
None
else
:
name
=
tokens
[
0
]
ver
=
tokens
[
1
]
ver
=
tokens
[
1
]
.
strip
(
'<>= '
)
if
not
any
([
f
in
name
for
f
in
filters
]):
reqs
.
append
((
name
,
ver
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment