Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Vasudevan, Rama K
pycroscopy
Commits
6b4b1883
Commit
6b4b1883
authored
Oct 29, 2018
by
Unknown
Browse files
Fix version check in processing/histogram.py
Change to check for Python 3.6 and newer
parent
9c5220df
Changes
1
Hide whitespace changes
Inline
Side-by-side
pycroscopy/processing/histogram.py
View file @
6b4b1883
...
...
@@ -8,7 +8,7 @@ from __future__ import division, print_function, absolute_import
import
numpy
as
np
import
sys
if
sys
.
version_info
.
major
==
3
and
sys
.
version_info
.
minor
=
=
6
:
if
sys
.
version_info
.
major
==
3
and
sys
.
version_info
.
minor
>
=
6
:
disable_histogram
=
True
else
:
disable_histogram
=
False
...
...
Write
Preview
Markdown
is supported
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