Skip to content

Commit b53fa6c

Browse files
ci: rot, drop python3.6 and 3.7
1 parent ad3f352 commit b53fa6c

4 files changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/codequality.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
code-quality:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-22.04
99
strategy:
1010
fail-fast: false
1111
matrix:

.github/workflows/installation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v4
13-
- name: Set up Python 3.7
13+
- name: Set up Python 3.8
1414
uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.7
16+
python-version: 3.8
1717
- name: Install hatch
1818
run: pip install hatch
1919
- name: Build

.github/workflows/unittest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717

1818
unit-test:
1919
needs: [build, code-quality]
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-22.04
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
24+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
2525

2626
steps:
2727
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ dependencies = [
1616

1717
classifiers = [
1818
"License :: OSI Approved :: MIT License",
19-
"Programming Language :: Python :: 3.6",
20-
"Programming Language :: Python :: 3.7",
2119
"Programming Language :: Python :: 3.8",
2220
"Programming Language :: Python :: 3.9",
2321
"Programming Language :: Python :: 3.10",
@@ -41,7 +39,7 @@ packages = ["react_ipywidgets", "reacton"]
4139

4240
[project.optional-dependencies]
4341
dev = [
44-
"ruff; python_version > '3.6'",
42+
"ruff",
4543
"mypy",
4644
"pre-commit",
4745
"coverage",
@@ -57,7 +55,7 @@ dev = [
5755
]
5856

5957
generate = [
60-
"ruff; python_version > '3.6'",
58+
"ruff",
6159
"black",
6260
"bqplot",
6361
"jinja2",

0 commit comments

Comments
 (0)