Skip to content

Commit

Permalink
feat(client_type): Preparation for 3.x release
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed Feb 8, 2023
1 parent e96749c commit b88a994
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
24 changes: 12 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ keywords =
packages = find:
include_package_data = True
install_requires =
trame-server>=2.9.0
trame-client>=2.1.0
trame-components
trame-deckgl
trame-markdown
trame-matplotlib
trame-plotly
trame-router
trame-server>=2.1.0
trame-simput
trame-vega
trame-vtk
trame-vuetify
trame-rca
trame-router==2.0.1
trame-vuetify==2.1.0
trame-components==2.1.0
trame-plotly==2.1.0
trame-markdown==2.0.2
trame-matplotlib==2.0.1
trame-deckgl==2.0.1
trame-vega==2.0.2
trame-vtk<3.0.0
trame-simput<3.0.0
trame-rca<3.0.0

[semantic_release]
version_pattern = setup.cfg:version = (\d+\.\d+\.\d+)
2 changes: 0 additions & 2 deletions trame/app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from trame_server import Server
from trame_client import module
from trame_client.widgets.core import VirtualNode

# Ensure this is imported so that mimetypes.init() is decorated
Expand Down Expand Up @@ -38,7 +37,6 @@ def get_server(name=None, create_if_missing=True, **kwargs):

if create_if_missing:
server = Server(name, VirtualNode, **kwargs)
server.enable_module(module) # Always load html module first
AVAILABLE_SERVERS[name] = server
return server

Expand Down

0 comments on commit b88a994

Please sign in to comment.