Skip to content

Commit 121da87

Browse files
authored
Officially drop Python 3.7 (#109)
1 parent f208a34 commit 121da87

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/pytest.yaml

Lines changed: 1 addition & 1 deletion
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.7, 3.8, 3.9, "3.10", "3.11"]
16+
python-version: [3.8, 3.9, "3.10", "3.11"]
1717
fail-fast: false
1818

1919
steps:

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ All notable changes to shinywidgets will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.2.1]
8+
## [UNRELEASED]
9+
10+
* Closed #104: Officially support for Python 3.7.
11+
12+
## [0.2.1] - 2023-05-15
913

1014
* Actually export `as_widget()` (it was mistakenly not exported in 0.2.0).
1115

setup.cfg

Lines changed: 2 additions & 2 deletions
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.7
1918
Programming Language :: Python :: 3.8
2019
Programming Language :: Python :: 3.9
2120
Programming Language :: Python :: 3.10
21+
Programming Language :: Python :: 3.11
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.7
28+
python_requires = >=3.8
2929
packages = find:
3030
test_suite = tests
3131
include_package_data = True

shinywidgets/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Carson Sievert"""
44
__email__ = "[email protected]"
5-
__version__ = "0.2.1"
5+
__version__ = "0.2.1.9000"
66

77
from ._dependencies import bokeh_dependency
88
from ._shinywidgets import output_widget, reactive_read, register_widget, render_widget, as_widget

0 commit comments

Comments
 (0)