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
manifest-rules
Commits
ea1f3f0c
Commit
ea1f3f0c
authored
Sep 22, 2021
by
Paul McCarthy
🚵
Browse files
Merge branch 'mnt/no-past-releases' into 'master'
Mnt/no past releases See merge request fsl/conda/manifest-rules!24
parents
cf53e1b3
40a3dae0
Changes
2
Hide whitespace changes
Inline
Side-by-side
manifest_rules/__init__.py
View file @
ea1f3f0c
#!/usr/bin/env python
__version__
=
'0.4.
7
'
__version__
=
'0.4.
8
'
manifest_rules/generate_manifest_file.py
View file @
ea1f3f0c
...
...
@@ -222,6 +222,13 @@ def main():
# for development releases
add_current_release
=
(
version
is
not
None
)
or
(
not
official
)
# The "official" variable controls whether the
# manifest should include info about past releases
# (which is done by downloading the current official
# release manifest). This can be overridden by
# setting the NO_PAST_RELEASES variable.
official
=
official
and
(
'NO_PAST_RELEASES'
not
in
os
.
environ
)
# Generate dev version identnfier
if
version
is
None
:
version
=
generate_development_version_identifier
()
...
...
Write
Preview
Markdown
is supported
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