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
add_module
Commits
cf7f8e68
Commit
cf7f8e68
authored
May 25, 2021
by
Paul McCarthy
🚵
Browse files
Merge branch 'mnt/packages' into 'master'
Mnt/packages See merge request
!10
parents
57f5868d
6566bc6c
Pipeline
#8507
failed with stages
in 1 minute and 13 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
.ci/build_dist.sh
View file @
cf7f8e68
...
...
@@ -13,6 +13,8 @@ for target in $sdist $wheel; do
.
test.venv/bin/activate
pip
install
--upgrade
pip setuptools
pip
install
$target
fsl_add_module
-V
fsl_add_module
-h
deactivate
rm
-r
test.venv
done
CHANGELOG.md
View file @
cf7f8e68
# `fsl_add_module` changelog
## 0.3.1 (Tuesday 25th May 2021)
-
Fixed an issue with building the
`fsl_add_module`
package.
## 0.3.0 (Tuesday 25th May 2021)
-
Plugin manifest entries can now contain
`version`
and
`terms_of_use`
fields
...
...
README.md
View file @
cf7f8e68
# `fsl_add_module`
[

](https://git.fmrib.ox.ac.uk/fsl/
fsl_
add_module/-/commits/master)
[

](https://git.fmrib.ox.ac.uk/fsl/
fsl_
add_module/commits/master/)
[

](https://git.fmrib.ox.ac.uk/fsl/add_module/-/commits/master)
[

](https://git.fmrib.ox.ac.uk/fsl/add_module/commits/master/)
...
...
fsl/add_module/__init__.py
View file @
cf7f8e68
...
...
@@ -9,5 +9,5 @@
"""
__version__
=
'0.3.
0
'
__version__
=
'0.3.
1
'
"""``fsl_add_module`` version number."""
setup.py
View file @
cf7f8e68
...
...
@@ -2,7 +2,7 @@
import
os.path
as
op
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_
namespace_
packages
basedir
=
op
.
dirname
(
__file__
)
...
...
@@ -22,6 +22,9 @@ with open(op.join(basedir, 'fsl', 'add_module', '__init__.py')) as f:
version
=
version
[
'__version__'
]
packages
=
find_namespace_packages
(
include
=
(
'fsl'
,
'fsl.*'
))
with
open
(
op
.
join
(
basedir
,
'README.md'
),
'rt'
)
as
f
:
readme
=
f
.
read
()
...
...
@@ -44,7 +47,7 @@ setup(
],
install_requires
=
install_requires
,
packages
=
find_
packages
()
,
packages
=
packages
,
include_package_data
=
True
,
entry_points
=
{
...
...
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