Skip to content

Commit

Permalink
Update supported pythons to 3.8-3.11 (#1013)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Oct 31, 2022
1 parent 2bd5321 commit db00586
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.11"]
exclude:
- os: macos-latest
python-version: "3.11" # not yet available
python-version: ["3.8", "3.11"]
include:
- os: windows-latest
python-version: "3.9"
- os: ubuntu-latest
python-version: "pypy-3.7"
python-version: "pypy-3.8"
- os: macos-latest
python-version: "3.10"
- os: ubuntu-latest
Expand Down Expand Up @@ -137,7 +134,7 @@ jobs:
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
python_version: "3.7"
python_version: "3.8"
- name: Install miniumum versions
uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
- name: Run the unit tests
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
urls = {Homepage = "https://ipython.org"}
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"debugpy>=1.0",
"ipython>=7.23.1",
Expand Down

0 comments on commit db00586

Please sign in to comment.