Skip to content

Commit 9849d31

Browse files
author
Cyrille Favreau
authored
Merge pull request #345 from favreau/master
Version 1.7.1
2 parents eed52c5 + 657816f commit 9849d31

File tree

9,248 files changed

+161900
-137134
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,248 files changed

+161900
-137134
lines changed

.github/workflows/pypi_tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
cd bioexplorer/pythonsdk
2323
python -m pip install --upgrade pip
24-
pip install -r requirements_dev.txt
24+
pip install --no-deps -r requirements_dev.txt
2525
python setup.py sdist
2626
- name: Publish Python package to PyPI (test)
2727
uses: pypa/gh-action-pypi-publish@release/v1

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ set(NAME BIOEXPLORER)
2323
set(PACKAGE_VERSION_ABI 1)
2424
set(PACKAGE_VERSION_MAJOR 1)
2525
set(PACKAGE_VERSION_MINOR 7)
26-
set(PACKAGE_VERSION_PATCH 0)
26+
set(PACKAGE_VERSION_PATCH 1)
2727

2828
# Get the Git revision using the git command
2929
execute_process(

bioexplorer/pythonsdk/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ unexport DISPLAY
3333
# Test coverage pass threshold (percent)
3434
MIN_COV?=45
3535
VENV_INSTALLED=.installed
36-
PIP_INSTALL_OPTIONS=--ignore-installed
36+
PIP_INSTALL_OPTIONS=--ignore-installed --no-deps
3737

3838
FIND_LINT_PY=`find bioexplorer -name "*.py" -not -path "*/*test*"`
3939
LINT_PYFILES := $(shell find $(FIND_LINT_PY))

bioexplorer/pythonsdk/bioexplorer/bio_explorer.py

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3040,7 +3040,14 @@ def add_sdf_demo(self):
30403040

30413041
return self._invoke_and_check("add-sdf-demo")
30423042

3043-
def add_torus(self, name, position, outer_radius, inner_radius, displacement_parameters=Vector3()):
3043+
def add_torus(
3044+
self,
3045+
name,
3046+
position,
3047+
outer_radius,
3048+
inner_radius,
3049+
displacement_parameters=Vector3(),
3050+
):
30443051
"""
30453052
Add a torus to the scene
30463053
@@ -3063,7 +3070,14 @@ def add_torus(self, name, position, outer_radius, inner_radius, displacement_par
30633070
params["displacement"] = displacement_parameters.to_list()
30643071
return self._invoke_and_check("add-torus", params)
30653072

3066-
def add_vesica(self, name, source_position, target_position, radius, displacement_parameters=Vector3()):
3073+
def add_vesica(
3074+
self,
3075+
name,
3076+
source_position,
3077+
target_position,
3078+
radius,
3079+
displacement_parameters=Vector3(),
3080+
):
30673081
"""
30683082
Add a vesica to the scene
30693083

bioexplorer/pythonsdk/bioexplorer/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
# You should have received a copy of the GNU General Public License along with
2222
# this program. If not, see <https://www.gnu.org/licenses/>.
2323

24-
VERSION = "1.7.0"
24+
VERSION = "1.7.1"

bioexplorer/pythonsdk/notebooks/widgets/BioExplorer_widgets.ipynb

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,6 @@
4242
"w.display_focal_distance(with_preview=True)"
4343
]
4444
},
45-
{
46-
"cell_type": "code",
47-
"execution_count": null,
48-
"metadata": {
49-
"scrolled": false
50-
},
51-
"outputs": [],
52-
"source": [
53-
"w.display_palette_for_models()"
54-
]
55-
},
5645
{
5746
"cell_type": "code",
5847
"execution_count": null,

bioexplorer/pythonsdk/requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pygments~=2.4.1
3030
pylint~=2.6.0
3131
pycodestyle~=2.7.0
3232
pydocstyle~=3.0.0
33-
nose~=1.3.7
33+
nose~=1.2.1
3434
coverage~=7.1.0
3535
nosexcover~=1.0.11
3636
tox~=3.6.1

bioexplorer/pythonsdk/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
version = 1.7.0
2+
version = 1.7.1
33
name = bioexplorer
44
summary = Blue Brain BioExplorer python API
55
long_description = file: README.md

bioexplorer/ui/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bioexplorer-ui",
3-
"version": "0.1.0",
3+
"version": "1.7.1",
44
"license": "LGPL-3.0+",
55
"private": true,
66
"scripts": {
@@ -26,5 +26,8 @@
2626
"workspaces": [
2727
"apps/*",
2828
"packages/*"
29-
]
29+
],
30+
"dependencies": {
31+
"yarn": "^1.22.21"
32+
}
3033
}

0 commit comments

Comments
 (0)