Skip to content

Commit

Permalink
chore: Drop official support and tests for python <= 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bow committed Jul 26, 2024
1 parent bc7a423 commit a7e1c29
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
python-version: ["3.12", "3.11"]
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ endif
APP_NAME := crimson

# Supported Python versions; latest listed first.
PYTHON_VERSIONS := 3.12.0 3.11.6 3.10.13 3.9.18 3.8.18
PYTHON_VERSIONS := 3.12.0 3.11.6

# Primary Python version used for virtualenv.
PYTHON_VERSION := $(firstword $(PYTHON_VERSIONS))
Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"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",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
Expand All @@ -37,7 +34,7 @@ style = "semver"
pattern = "^v?(?P<base>\\d+\\.\\d+\\.\\d+)(-?((?P<stage>[a-zA-Z]+)\\.?(?P<revision>\\d+)?))?(\\+(?P<tagged_metadata>.+))?$"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
python = ">=3.11.0,<4.0"
click = "^8.1.7"
PyYAML = "^6.0.1"

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py312, py311, py310, py39, py38
envlist = py312, py311

[testenv]
allowlist_externals =
Expand Down

0 comments on commit a7e1c29

Please sign in to comment.