Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openstructure
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor 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
schwede
openstructure
Commits
7ca52518
Commit
7ca52518
authored
5 years ago
by
Bienchen
Browse files
Options
Downloads
Plain Diff
Merge with develop
parents
f5c0be2a
dadc5a57
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.txt
+7
-0
7 additions, 0 deletions
CHANGELOG.txt
doc/conf/conf.py
+2
-2
2 additions, 2 deletions
doc/conf/conf.py
singularity/Singularity
+15
-6
15 additions, 6 deletions
singularity/Singularity
with
24 additions
and
8 deletions
CHANGELOG.txt
+
7
−
0
View file @
7ca52518
Changes in Release 1.11.0
--------------------------------------------------------------------------------
* This is expected to be the last release supporting Python 2.
* Read revision version numbers from mmCIF files.
* Several minor bug fixes and improvements.
Changes in Release 1.10.0
--------------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
doc/conf/conf.py
+
2
−
2
View file @
7ca52518
...
...
@@ -48,8 +48,8 @@ source_suffix = '.rst'
master_doc
=
'
index
'
# General information about the project.
project
=
'
OpenStructure
'
copyright
=
'
2020, OpenStructure authors
'
project
=
u
'
OpenStructure
'
copyright
=
u
'
2020, OpenStructure authors
'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
...
...
This diff is collapsed.
Click to expand it.
singularity/Singularity
+
15
−
6
View file @
7ca52518
...
...
@@ -18,13 +18,26 @@ ln -sf /bin/bash /bin/sh
apt-get update -y && apt-get install -y python3-pip
pip3 install nglview \
ipython \
jupyter
jupyter \
six
# SET LOCALE
############
echo "LC_ALL=en_US.UTF-8" >> /etc/environment
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
echo "LANG=en_US.UTF-8" > /etc/locale.conf
locale-gen en_US.UTF-8
# SETUP IPYTHON / JUPYTER
#########################
# As the Singularity mounts $HOME by default Jupyter and Ipython config files
# are moved to separate directories. Proper environmental variables are also
# set
export IPYTHONDIR="/usr/local/share/ipython"
export JUPYTER_CONFIG_DIR="/usr/local/etc/jupyter"
export JUPYTER_PATH="/usr/local/share/jupyter"
export JUPYTER_RUNTIME_DIR="$JUPYTER_PATH/runtime"
mkdir -p /usr/local/share/ipython
mkdir -p $JUPYTER_PATH
mkdir -p $JUPYTER_RUNTIME_DIR
...
...
@@ -56,14 +69,10 @@ jupyter nbextension enable nglview --py --sys-prefix
##############################################################################
# ENVIRONMENT
##############################################################################
# As the Singularity mounts $HOME by default Jupyter and Ipython config files
# are moved to separate directories. Proper environmental variables are also
# set
export IPYTHONDIR="/usr/local/share/ipython"
export JUPYTER_CONFIG_DIR="/usr/local/etc/jupyter"
export JUPYTER_PATH="/usr/local/share/jupyter"
export JUPYTER_RUNTIME_DIR="/usr/local/share/jupyter/runtime"
export JUPYTER_RUNTIME_DIR="$JUPYTER_PATH/runtime"
%apprun ChemdictTool
##############################################################################
...
...
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