version bump

This commit is contained in:
David Koes
2025-06-02 19:07:30 -04:00
parent 130452961e
commit 1789c232ed
5 changed files with 5 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ jobs:
- name: Coverage
env:
NODE_OPTIONS: "--expose-gc --no-compilation-cache"
NODE_OPTIONS: "--expose-gc"
# coverage has trouble fetching data for some reason in the CI,
# I don't actually care about the test results (that's tested above)
# so ignore any failure here

View File

@@ -16,7 +16,7 @@
"cleverLinks": true,
"monospaceLinks": false,
"footer": "",
"copyright":"3Dmol.js © 2019-2024",
"copyright":"3Dmol.js © 2019-2025",
"linenums" : true,
"collapseSymbols" : false,
"inverseNav" : true,

View File

@@ -1,6 +1,6 @@
{
"name": "3dmol",
"version": "2.4.2",
"version": "2.5.0",
"description": "JavaScript/TypeScript molecular visualization library",
"repository": {
"type": "git",

View File

@@ -54,7 +54,7 @@ class view(object):
the exception that the functions all return None.
http://3dmol.org/doc/GLViewer.html
'''
def __init__(self,query='',width=640,height=480,viewergrid=None,data=None,style=None,linked=True,options=dict(),format=None,js='https://cdnjs.cloudflare.com/ajax/libs/3Dmol/2.4.2/3Dmol-min.js'):
def __init__(self,query='',width=640,height=480,viewergrid=None,data=None,style=None,linked=True,options=dict(),format=None,js='https://cdnjs.cloudflare.com/ajax/libs/3Dmol/2.5.0/3Dmol-min.js'):
'''Create a 3Dmol.js view.
width -- width in pixels of container
height -- height in pixels of container

View File

@@ -24,7 +24,7 @@ setup(
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
# Keep version in synce with 3Dmol.js version. Use "postX" suffix if needed
version='2.4.2post1',
version='2.5.0',
description='An IPython interface for embedding 3Dmol.js views in Jupyter notebooks',
long_description=long_description,