Skip to content

Commit 6a5b834

Browse files
authored
Merge branch 'main' into copyright-years
2 parents f770df2 + 39f2959 commit 6a5b834

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: npm ci
2828
- name: Set up Python 3.12
29-
uses: actions/setup-python@v1
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: '3.12'
3232

@@ -101,7 +101,7 @@ jobs:
101101
run: npm ci
102102

103103
- name: Set up Python 3.12
104-
uses: actions/setup-python@v1
104+
uses: actions/setup-python@v5
105105
with:
106106
python-version: '3.12'
107107

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
- name: Install dependencies
3333
run: npm ci
3434
- name: Set up Python 3.12
35-
uses: actions/setup-python@v1
35+
uses: actions/setup-python@v5
3636
with:
3737
python-version: '3.12'
3838
- name: Install Dash
3939
run: python -m pip install -r requirements-dev.txt
4040
- name: Build dash-bootstrap-components
4141
run: npm run build
4242
- name: Upload generated files
43-
uses: actions/upload-artifact@v2
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: dash-bootstrap-components
4646
path: dash_bootstrap_components/_components
@@ -51,7 +51,7 @@ jobs:
5151
strategy:
5252
max-parallel: 6
5353
matrix:
54-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
54+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
5555
services:
5656
hub:
5757
image: selenium/hub:3.141.59-gold
@@ -63,20 +63,20 @@ jobs:
6363
steps:
6464
- uses: actions/checkout@v1
6565
- name: Set up Python 3.12
66-
uses: actions/setup-python@v1
66+
uses: actions/setup-python@v5
6767
with:
6868
python-version: '3.12'
6969
- name: Set up Python ${{ matrix.python-version }}
7070
if: matrix.python-version != '3.12'
71-
uses: actions/setup-python@v1
71+
uses: actions/setup-python@v5
7272
with:
7373
python-version: ${{ matrix.python-version }}
7474
- name: Install nox
7575
run: python3.12 -m pip install -U nox
7676
- name: Lint Python source
7777
if: matrix.python-version == '3.12'
7878
run: nox -s lint
79-
- uses: actions/download-artifact@v2
79+
- uses: actions/download-artifact@v4
8080
with:
8181
name: dash-bootstrap-components
8282
path: dash_bootstrap_components/_components

docs/components_page/components/spinner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ lead: Indicate the loading state of a component or page with the `Spinner` compo
55

66
## Examples
77

8-
The `Spinner` component can be used either to create a standalone spinner, or used in the same way as [dcc.Loading](https://dash.plot.ly/dash-core-components/loading) by passing children.
8+
The `Spinner` component can be used either to create a standalone spinner, or used in the same way as [dcc.Loading](https://dash.plotly.com/dash-core-components/loading) by passing children.
99

1010
To create a simple spinner, just add `dbc.Spinner()` to your layout. By default, `Spinner` uses the current text color for its border color. Override the color of the `Spinner` using the `color` argument and one of the eight supported contextual color names.
1111

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def format_(session):
2727
session.run("isort", *SOURCES)
2828

2929

30-
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
30+
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
3131
def test(session):
3232
session.install("pytest")
3333
session.install("dash[testing]>=2.0.0")

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ def _get_long_description():
4444
classifiers=[
4545
"Framework :: Dash",
4646
"License :: OSI Approved :: Apache Software License",
47-
"Programming Language :: Python :: 3.8",
4847
"Programming Language :: Python :: 3.9",
4948
"Programming Language :: Python :: 3.10",
5049
"Programming Language :: Python :: 3.11",
5150
"Programming Language :: Python :: 3.12",
51+
"Programming Language :: Python :: 3.13",
5252
],
5353
extras_require={"pandas": ["numpy", "pandas"]},
54-
python_requires=">=3.8, <4",
54+
python_requires=">=3.9, <4",
5555
)

0 commit comments

Comments
 (0)