Skip to content

Commit

Permalink
Merge pull request #6 from glsdown/v1-release
Browse files Browse the repository at this point in the history
V1 release
  • Loading branch information
glsdown committed Jan 30, 2022
2 parents 5fdfe9f + ce16f44 commit 07db477
Show file tree
Hide file tree
Showing 23 changed files with 14,218 additions and 13,030 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
max-parallel: 6
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, '3.10']
services:
hub:
image: selenium/hub:3.141.59-gold
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
strategy:
max-parallel: 6
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, '3.10']
services:
hub:
image: selenium/hub:3.141.59-gold
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,8 @@ to improve the layout._

```python
import dash
import dash_bootstrap_components as dbs
import dash_core_components as dcc
import dash_html_components as html
from dash import dcc, html
import dash_bootstrap_components as dbc
import dash_loading_spinners as dls

app = dash.Dash(external_stylesheets=[dbc.themes.UNITED])
Expand All @@ -97,7 +96,7 @@ app.layout = html.Div(
dbc.Row(
[
dbc.Col(
dbc.FormGroup(
html.Div(
dbc.Button(
"Simulate slow loading component",
id="loading-button",
Expand Down
4 changes: 1 addition & 3 deletions docs/docs_app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import re

import dash_bootstrap_components as dbc
import dash_core_components as dcc
import dash_html_components as html
from dash.dependencies import Input, Output
from dash import Input, Output, dcc, html

from docs_app.app import app
from docs_app.component import components
Expand Down
6 changes: 6 additions & 0 deletions docs/docs_app/assets/about.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This favicon was generated using the following graphics from Twitter Twemoji:

- Graphics Title: 2b55.svg
- Graphics Author: Copyright 2020 Twitter, Inc and other contributors (https://github.com/twitter/twemoji)
- Graphics Source: https://github.com/twitter/twemoji/blob/master/assets/svg/2b55.svg
- Graphics License: CC-BY 4.0 (https://creativecommons.org/licenses/by/4.0/)
Loading

0 comments on commit 07db477

Please sign in to comment.