Skip to content

Commit

Permalink
Drop EOL Python 3.7, Bump PyPy to 3.9 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Jul 7, 2023
1 parent 7eafbd3 commit 651d0ac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.7"
python-version: "3.8"
cache: pip
cache-dependency-path: |
.github/workflows/workflow.yml
Expand Down Expand Up @@ -68,12 +68,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy3.8']
python-version: ['pypy3.9', '3.8', '3.9', '3.10', '3.11']
sphinx-version: ['>=4,<5', '>=5,<6', '>=6a0,<7']
os: [windows-latest, macos-latest, ubuntu-latest]
exclude:
# Sphinx 6 supports 3.8+
- { python-version: '3.7', sphinx-version: '>=6a0,<7' }
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
6 changes: 5 additions & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.11"

python:
version: 3
install:
- method: pip
path: .
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -39,5 +38,5 @@
"Topic :: Text Processing",
"Topic :: Utilities",
],
python_requires=">=3.7",
python_requires=">=3.8",
)

0 comments on commit 651d0ac

Please sign in to comment.