Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Ale
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
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aflab
astrogeology
Ale
Commits
08014ab4
Commit
08014ab4
authored
6 years ago
by
Kelvin Rodriguez
Committed by
acpaquette
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
updated version number (#200)
* version tick * reverted config
parent
eaa13848
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
ale/__init__.py
+18
-0
18 additions, 0 deletions
ale/__init__.py
ale/config.py
+1
-2
1 addition, 2 deletions
ale/config.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
20 additions
and
3 deletions
ale/__init__.py
+
18
−
0
View file @
08014ab4
from
.
import
drivers
from
.
import
drivers
from
.
import
formatters
from
.
import
formatters
from
.drivers
import
load
,
loads
from
.drivers
import
load
,
loads
import
os
from
pkg_resources
import
get_distribution
,
DistributionNotFound
try
:
_dist
=
get_distribution
(
'
ale
'
)
# Normalize case for Windows systems
dist_loc
=
os
.
path
.
normcase
(
_dist
.
location
)
here
=
os
.
path
.
normcase
(
__file__
)
if
not
here
.
startswith
(
os
.
path
.
join
(
dist_loc
,
'
ale
'
)):
# not installed, but there is another version that *is*
raise
DistributionNotFound
except
DistributionNotFound
:
__version__
=
'
Please install this project with setup.py
'
else
:
__version__
=
_dist
.
version
This diff is collapsed.
Click to expand it.
ale/config.py
+
1
−
2
View file @
08014ab4
...
@@ -10,4 +10,3 @@ mro = '/data/spice/mro-m-spice-6-v1.0/mrosp_1000/extras/mk' # Mars Reconnaissanc
...
@@ -10,4 +10,3 @@ mro = '/data/spice/mro-m-spice-6-v1.0/mrosp_1000/extras/mk' # Mars Reconnaissanc
kaguya
=
'
/data/spice/SELENE/kernels/mk/
'
kaguya
=
'
/data/spice/SELENE/kernels/mk/
'
dawn
=
'
/data/spice/dawn-m_a-spice-6-v1.0/dawnsp_1000/extras/mk
'
dawn
=
'
/data/spice/dawn-m_a-spice-6-v1.0/dawnsp_1000/extras/mk
'
lro
=
'
/usgs/cpkgs/isis3/data/lro/kernels/mk/
'
# LRO
lro
=
'
/usgs/cpkgs/isis3/data/lro/kernels/mk/
'
# LRO
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
08014ab4
...
@@ -4,7 +4,7 @@ import sys
...
@@ -4,7 +4,7 @@ import sys
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
NAME
=
"
Ale
"
NAME
=
"
Ale
"
VERSION
=
"
0.
0.3
"
VERSION
=
"
0.
2.0
"
# To install the library, run the following
# To install the library, run the following
#
#
...
...
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