Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
force-bdss
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Adham Hashibon
force-bdss
Commits
83142288
Unverified
Commit
83142288
authored
6 years ago
by
Stefano Borini
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into 135-instantiate-parameter-factories-once
parents
55e9c46f
020a6b68
No related branches found
Branches containing commit
No related tags found
1 merge request
!191
Instantiate parameter factories once
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES.rst
+6
-1
6 additions, 1 deletion
CHANGES.rst
force_bdss/bdss_application.py
+1
-1
1 addition, 1 deletion
force_bdss/bdss_application.py
force_bdss/ids.py
+6
-6
6 additions, 6 deletions
force_bdss/ids.py
with
13 additions
and
8 deletions
CHANGES.rst
+
6
−
1
View file @
83142288
...
...
@@ -24,6 +24,10 @@ Backward incompatible changes that require rework of the plugins:
and to install the BDSS (#180)
- Removed support for python2 (#179)
Internal changes:
- Changed internal plugin ids to prevent conflicts with external ones (#131)
Release 0.2.0
-------------
...
...
@@ -32,4 +36,5 @@ Release 0.2.0
Release 0.1.0
-------------
- Initial release. Implements basic functionality of the BDSS and its plugin system.
- Initial release. Implements basic functionality of the BDSS and its
plugin system.
This diff is collapsed.
Click to expand it.
force_bdss/bdss_application.py
+
1
−
1
View file @
83142288
...
...
@@ -19,7 +19,7 @@ log = logging.getLogger(__name__)
class
BDSSApplication
(
Application
):
"""
Main application for the BDSS.
"""
id
=
"
force
_
bdss.bdss_application
"
id
=
"
force
.
bdss
_core
.bdss_application
"
#: The path of the workflow file to open
workflow_filepath
=
Unicode
()
...
...
This diff is collapsed.
Click to expand it.
force_bdss/ids.py
+
6
−
6
View file @
83142288
...
...
@@ -6,16 +6,16 @@ class ExtensionPointID:
as they just have to reimplement the plugin base class and implement
the appropriate default methods.
"""
MCO_FACTORIES
=
'
force.bdss.mco.factories
'
DATA_SOURCE_FACTORIES
=
'
force.bdss.data_source.factories
'
MCO_FACTORIES
=
'
force.bdss
_core
.mco.factories
'
DATA_SOURCE_FACTORIES
=
'
force.bdss
_core
.data_source.factories
'
NOTIFICATION_LISTENER_FACTORIES
=
\
'
force.bdss.notification_listener.factories
'
UI_HOOKS_FACTORIES
=
'
force.bdss.ui_hooks.factories
'
'
force.bdss
_core
.notification_listener.factories
'
UI_HOOKS_FACTORIES
=
'
force.bdss
_core
.ui_hooks.factories
'
class
InternalPluginID
:
CORE_MCO_DRIVER_ID
=
"
force.bdss
.
core.CoreMCODriver
"
CORE_EVALUATION_DRIVER_ID
=
"
force.bdss
.
core.CoreEvaluationDriver
"
CORE_MCO_DRIVER_ID
=
"
force.bdss
_
core.CoreMCODriver
"
CORE_EVALUATION_DRIVER_ID
=
"
force.bdss
_
core.CoreEvaluationDriver
"
def
factory_id
(
plugin_id
,
identifier
):
...
...
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