Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
exposure-initializer
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Global Dynamic Exposure
exposure-initializer
Merge requests
!28
Resolve "Create a release using CI/CD"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Create a release using CI/CD"
27-create-a-release-using-ci-cd
into
main
Overview
0
Commits
1
Pipelines
2
Changes
6
Merged
Laurens Oostwegel
requested to merge
27-create-a-release-using-ci-cd
into
main
1 year ago
Overview
0
Commits
1
Pipelines
2
Changes
6
Expand
Closes
#27 (closed)
\approve
@ds
@gislars
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
109911cd
1 commit,
1 year ago
6 files
+
72
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
exposureinitializer/__init__.py
+
9
−
0
Options
@@ -15,3 +15,12 @@
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
from
.exposureinitializer
import
ExposureInitializer
from
importlib.metadata
import
version
,
PackageNotFoundError
try
:
__version__
=
version
(
"
exposureinitializer
"
)
except
PackageNotFoundError
:
__version__
=
"
unknown version
"
__all__
=
[
"
ExposureInitializer
"
]
Loading