Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coverplot
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Software Public
PASSOFT
coverplot
Commits
45e5a23f
Commit
45e5a23f
authored
6 years ago
by
Derick Hess
Browse files
Options
Downloads
Patches
Plain Diff
updated version removed install.py
parent
0f4adcba
No related branches found
Branches containing commit
No related tags found
1 merge request
!4
Coverplot py3
Pipeline
#293
passed with stage
Stage: test
in 1 minute and 47 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
HISTORY.rst
+5
-0
5 additions, 0 deletions
HISTORY.rst
coverplot/__init__.py
+1
-1
1 addition, 1 deletion
coverplot/__init__.py
coverplot/install.py
+0
-61
0 additions, 61 deletions
coverplot/install.py
setup.cfg
+1
-1
1 addition, 1 deletion
setup.cfg
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
8 additions
and
64 deletions
HISTORY.rst
+
5
−
0
View file @
45e5a23f
...
...
@@ -12,3 +12,8 @@ History
* Updated Plot Save, now includes time annotations on saved eps plot file. - dthomas
2018.228 (2018-08-26)
------------------
* Updated Pto be python 2/3 compatible
This diff is collapsed.
Click to expand it.
coverplot/__init__.py
+
1
−
1
View file @
45e5a23f
...
...
@@ -4,4 +4,4 @@
__author__
=
"""
IRIS PASSCAL
"""
__email__
=
'
software-support@passcal.nmt.edu
'
__version__
=
'
2018.2
06
'
__version__
=
'
2018.2
28
'
This diff is collapsed.
Click to expand it.
coverplot/install.py
deleted
100644 → 0
+
0
−
61
View file @
0f4adcba
#!/usr/bin/env python
import
shutil
,
os
,
stat
,
sys
from
compileall
import
*
# Location of PASSCAL distribution
ROOTDIR
=
'
/opt/passcal
'
#
if
len
(
sys
.
argv
)
>
1
:
ROOTDIR
=
sys
.
argv
[
1
]
elif
os
.
environ
.
has_key
(
'
PASSCAL
'
)
:
ROOTDIR
=
os
.
environ
[
'
PASSCAL
'
]
else
:
sys
.
stderr
.
write
(
"
PASSCAL environment variable not set!
\n
"
)
sys
.
exit
()
PROGDIR
=
os
.
getcwd
()
PROG
=
os
.
path
.
basename
(
PROGDIR
)
LIBDIR
=
ROOTDIR
+
'
/lib/python
'
BINDIR
=
ROOTDIR
+
'
/bin
'
LIBPROG
=
LIBDIR
+
'
/
'
+
PROG
PROGS
=
(
'
coverplot
'
,)
LIBS
=
()
# Delete libs
for
p
in
LIBS
:
p
=
p
+
'
.pyc
'
try
:
os
.
remove
(
p
)
except
OSError
:
pass
# Compile
compile_dir
(
"
.
"
)
# Make libs dir
command
=
'
mkdir -p
'
+
LIBDIR
os
.
system
(
command
)
# Remove old libs
try
:
shutil
.
rmtree
(
LIBPROG
)
except
OSError
:
pass
# install libraries
shutil
.
copytree
(
PROGDIR
,
LIBPROG
)
command
=
'
mkdir -p
'
+
BINDIR
os
.
system
(
command
)
# install programs
for
p
in
PROGS
:
src
=
p
dst
=
BINDIR
+
'
/
'
+
p
try
:
os
.
remove
(
dst
)
except
OSError
:
pass
print
src
,
dst
shutil
.
copy
(
src
,
dst
)
os
.
chmod
(
dst
,
0557
)
This diff is collapsed.
Click to expand it.
setup.cfg
+
1
−
1
View file @
45e5a23f
[bumpversion]
current_version
= 2018.2
06
current_version
= 2018.2
28
commit
= True
tag
= True
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
45e5a23f
...
...
@@ -51,6 +51,6 @@ setup(
packages
=
find_packages
(
include
=
[
'
coverplot
'
]),
test_suite
=
'
tests
'
,
url
=
'
https://git.passcal.nmt.edu/passoft/coverplot
'
,
version
=
'
2018.2
06
'
,
version
=
'
2018.2
28
'
,
zip_safe
=
False
,
)
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