Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kwant
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Joseph Weston
kwant
Commits
bffa8bd9
There was a problem fetching the pipeline summary.
Commit
bffa8bd9
authored
7 years ago
by
Joseph Weston
Browse files
Options
Downloads
Plain Diff
Merge branch 'stable'
parents
b838fe23
92ad0a35
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
kwant/tests/test_plotter.py
+4
-4
4 additions, 4 deletions
kwant/tests/test_plotter.py
kwant/version.py
+1
-1
1 addition, 1 deletion
kwant/version.py
setup.py
+4
-4
4 additions, 4 deletions
setup.py
with
9 additions
and
9 deletions
kwant/tests/test_plotter.py
+
4
−
4
View file @
bffa8bd9
...
...
@@ -31,10 +31,10 @@ def test_importable_without_matplotlib():
suffix
=
'
py
'
assert
suffix
==
'
py
'
fname
=
sep
.
join
((
prefix
,
suffix
))
with
open
(
fname
)
as
f
:
with
open
(
fname
,
'
rb
'
)
as
f
:
code
=
f
.
read
()
code
=
code
.
replace
(
'
from . import
'
,
'
from kwant import
'
)
code
=
code
.
replace
(
'
matplotlib
'
,
'
totalblimp
'
)
code
=
code
.
replace
(
b
'
from . import
'
,
b
'
from kwant import
'
)
code
=
code
.
replace
(
b
'
matplotlib
'
,
b
'
totalblimp
'
)
with
warnings
.
catch_warnings
(
record
=
True
)
as
w
:
warnings
.
simplefilter
(
"
always
"
)
...
...
@@ -253,7 +253,7 @@ def syst_rect(lat, salt, W=3, L=50):
ww
=
W
//
2
def
onsite
(
site
):
return
4
+
0.1
*
kwant
.
digest
.
gauss
(
site
.
tag
,
salt
=
salt
)
return
4
+
0.1
*
kwant
.
digest
.
gauss
(
repr
(
site
.
tag
)
,
salt
=
salt
)
syst
[(
lat
(
i
,
j
)
for
i
in
range
(
-
ll
,
ll
+
1
)
for
j
in
range
(
-
ww
,
ww
+
1
))]
=
onsite
...
...
This diff is collapsed.
Click to expand it.
kwant/version.py
+
1
−
1
View file @
bffa8bd9
...
...
@@ -86,7 +86,7 @@ def get_version_from_git():
def
init
(
version_file
=
'
_kwant_version.py
'
):
global
version
,
version_is_from_git
version_info
=
{}
with
open
(
os
.
path
.
join
(
package_root
,
version_file
),
'
r
'
)
as
f
:
with
open
(
os
.
path
.
join
(
package_root
,
version_file
),
'
r
b
'
)
as
f
:
exec
(
f
.
read
(),
{},
version_info
)
version
=
version_info
[
'
version
'
]
version_is_from_git
=
(
version
==
"
__use_git__
"
)
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
4
−
4
View file @
bffa8bd9
...
...
@@ -243,10 +243,10 @@ class build_tut(Command):
os
.
mkdir
(
tut_dir
)
for
in_fname
in
glob
.
glob
(
'
doc/source/tutorial/*.py
'
):
out_fname
=
os
.
path
.
join
(
tut_dir
,
os
.
path
.
basename
(
in_fname
))
with
open
(
in_fname
)
as
in_file
:
with
open
(
out_fname
,
'
w
'
)
as
out_file
:
with
open
(
in_fname
,
'
rb
'
)
as
in_file
:
with
open
(
out_fname
,
'
w
b
'
)
as
out_file
:
for
line
in
in_file
:
if
not
line
.
startswith
(
'
#HIDDEN
'
):
if
not
line
.
startswith
(
b
'
#HIDDEN
'
):
out_file
.
write
(
line
)
...
...
@@ -364,7 +364,7 @@ def write_version(fname):
def
long_description
():
text
=
[]
try
:
with
open
(
'
README.rst
'
)
as
f
:
with
open
(
'
README.rst
'
,
encoding
=
'
utf8
'
)
as
f
:
for
line
in
f
:
if
line
.
startswith
(
'
See also in this directory:
'
):
break
...
...
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