Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trajectory visualizer #51

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
bf97c74
start migration towards aiida 1.0
ltalirz May 17, 2019
82c6e97
Finish migration towards aiida 1.0
yakutovicha May 22, 2019
35f60bc
Add widgets from aiidalab-empa-surfaces:
yakutovicha Jul 26, 2019
510a922
Add custom pre-commit config files and fix most of the style problems
yakutovicha Oct 30, 2019
1afe6df
Prepare release 1.0.0a6
yakutovicha Nov 1, 2019
5639501
Three new widgets + two fixes:
yakutovicha Nov 6, 2019
7e4295a
Prepare release 1.0.0a7
yakutovicha Nov 7, 2019
3cbe41c
Work on AiiDA objects viewers (#28)
yakutovicha Dec 3, 2019
9eb2b97
CodeDropdown widget: add path_to_root parameter (#29)
yakutovicha Dec 3, 2019
b01bd02
Inject StructureBrowserWidget into StructureUploader (#30)
yakutovicha Dec 4, 2019
d1db06f
Introduce the concept of the ProcessFollower (#33)
yakutovicha Dec 6, 2019
fa8adb1
Refactor structures widgets and add SMILES importer (#35)
yakutovicha Dec 18, 2019
b2f0f71
Refactor process widgets (#37)
yakutovicha Dec 18, 2019
72d0f54
Remove metadata widget (#39)
yakutovicha Dec 19, 2019
11573b1
Work on structure widgets: (#40)
yakutovicha Dec 24, 2019
9c01397
Reuse structure data viewer in StructureManagerWidget (#41)
yakutovicha Dec 30, 2019
d99391d
Rename vizualisers to viewer + clean up the code. (#44)
yakutovicha Dec 30, 2019
92d3c95
Make OpenBabel a soft dependency (#50)
csadorf Jan 16, 2020
0c8d565
Remove py27 (#49)
csadorf Jan 16, 2020
50fe68e
Work on StructureDataViewer (#47)
yakutovicha Jan 20, 2020
eaeda93
Working version of trajectory visualizer based on bqplot
yakutovicha Jan 8, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
# Install pre-commit hooks via
# # Install pre-commit hooks via
# pre-commit install

# modernizer: make sure our code-base is Python 3 ready
- repo: https://github.com/python-modernize/python-modernize.git
sha: a234ce4e185cf77a55632888f1811d83b4ad9ef2
hooks:
- id: python-modernize
exclude: ^docs/
args:
- --write
- --nobackups

- repo: local
hooks:
Expand Down
19 changes: 19 additions & 0 deletions .prospector.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
max-line-length: 120

ignore-paths:
- doc
- examples
- test
- utils

pylint:
run: true

pyflakes:
run: false

pep8:
run: false

mccabe:
run: false
Loading