Skip to content

Commit

Permalink
Drop support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
josiah-wolf-oberholtzer committed Feb 16, 2024
1 parent 481a85f commit dcbf5c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
- os: macos-latest
python-version: "3.12"
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ classifiers = [
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -34,7 +33,7 @@ keywords = ["audio", "dsp", "music composition", "scsynth", "supercollider", "sy
license = {text = "MIT"}
name = "supriya"
readme = "README.md"
requires-python = ">= 3.8"
requires-python = ">= 3.9"

[project.optional-dependencies]
docs = [
Expand Down Expand Up @@ -80,7 +79,7 @@ repository = "https://github.com/josiah-wolf-oberholtzer/supriya"
target-version = ["py312"]

[tool.cibuildwheel]
build = "cp38-* cp39-* cp310-* cp311-* cp312-*"
build = "cp39-* cp310-* cp311-* cp312-*"
test-command = [
"python -c 'from supriya.contexts import shm; print(shm.__file__)'",
"python -c 'from supriya.utils._intervals import IntervalTreeDriverEx'",
Expand Down
2 changes: 0 additions & 2 deletions tests/book/test_ext_book.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import pathlib
import platform
import shutil
import sys

import pytest
import uqbar.io
Expand Down Expand Up @@ -54,7 +53,6 @@ def test_sphinx_book_html(caplog, app, status, warning, rm_dirs):
assert len(plot_svg_paths) == 1


@pytest.mark.skipif(sys.version_info < (3, 9), reason="Sphinx paths broken in 3.8")
@pytest.mark.sphinx("text", testroot="book")
def test_sphinx_book_text(app, status, warning, rm_dirs):
app.build()
Expand Down

0 comments on commit dcbf5c3

Please sign in to comment.