Skip to content

Commit 651d0ac

Browse files
authored
Drop EOL Python 3.7, Bump PyPy to 3.9 (#106)
1 parent 7eafbd3 commit 651d0ac

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Python
3838
uses: actions/setup-python@v4
3939
with:
40-
python-version: "3.7"
40+
python-version: "3.8"
4141
cache: pip
4242
cache-dependency-path: |
4343
.github/workflows/workflow.yml
@@ -68,12 +68,9 @@ jobs:
6868
strategy:
6969
fail-fast: false
7070
matrix:
71-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy3.8']
71+
python-version: ['pypy3.9', '3.8', '3.9', '3.10', '3.11']
7272
sphinx-version: ['>=4,<5', '>=5,<6', '>=6a0,<7']
7373
os: [windows-latest, macos-latest, ubuntu-latest]
74-
exclude:
75-
# Sphinx 6 supports 3.8+
76-
- { python-version: '3.7', sphinx-version: '>=6a0,<7' }
7774
steps:
7875
- uses: actions/checkout@v3
7976
- name: Set up Python ${{ matrix.python-version }}

.readthedocs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
version: 2
22

3+
build:
4+
os: ubuntu-22.04
5+
tools:
6+
python: "3.11"
7+
38
python:
4-
version: 3
59
install:
610
- method: pip
711
path: .

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
"License :: OSI Approved :: BSD License",
2828
"Natural Language :: English",
2929
"Operating System :: OS Independent",
30-
"Programming Language :: Python :: 3.7",
3130
"Programming Language :: Python :: 3.8",
3231
"Programming Language :: Python :: 3.9",
3332
"Programming Language :: Python :: 3.10",
@@ -39,5 +38,5 @@
3938
"Topic :: Text Processing",
4039
"Topic :: Utilities",
4140
],
42-
python_requires=">=3.7",
41+
python_requires=">=3.8",
4342
)

0 commit comments

Comments
 (0)