Skip to content

Commit dabfac8

Browse files
committed
Drop python 3.8, add python 3.12
1 parent 3fd46bf commit dabfac8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/pytest.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.8, 3.9, "3.10", "3.11"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1717
fail-fast: false
1818

1919
steps:
@@ -57,10 +57,10 @@ jobs:
5757
needs: [build]
5858
steps:
5959
- uses: actions/checkout@v3
60-
- name: "Set up Python 3.8"
60+
- name: "Set up Python 3.12"
6161
uses: actions/setup-python@v4
6262
with:
63-
python-version: "3.8"
63+
python-version: "3.12"
6464
- name: Install dependencies
6565
run: |
6666
python -m pip install --upgrade pip

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ classifiers =
1515
Intended Audience :: Developers
1616
License :: OSI Approved :: MIT License
1717
Natural Language :: English
18-
Programming Language :: Python :: 3.8
1918
Programming Language :: Python :: 3.9
2019
Programming Language :: Python :: 3.10
2120
Programming Language :: Python :: 3.11
21+
Programming Language :: Python :: 3.12
2222
project_urls =
2323
Bug Tracker = https://github.com/rstudio/py-shinywidgets/issues
2424
Documentation = https://github.com/rstudio/py-shinywidgets/
2525
Source Code = https://github.com/rstudio/py-shinywidgets/
2626

2727
[options]
28-
python_requires = >=3.8
28+
python_requires = >=3.9
2929
packages = find:
3030
test_suite = tests
3131
include_package_data = True

0 commit comments

Comments
 (0)