Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
drop Python 3.8
  • Loading branch information
aaronliu0130 authored and cclauss committed Apr 7, 2025
commit 1a7bf1d3850f7f882fd6c0284453f67bb9ec68e9
7 changes: 6 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
Changelog
*********

2.0.1 (2025-04-02)
2.1.0 (TBA)
===========

* Python versions less than 3.8 are no longer supported.

2.0.1 (2025-03-09)
==================

Yet another overdue... hotfix. Sorry this took so long.
Expand Down
2 changes: 1 addition & 1 deletion cpplint.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
import codecs
import collections
import copy
import getopt # pylint: disable=deprecated-module
import getopt
import glob
import itertools
import math # for log
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ authors = [
{ name = "Andrew Davis", email = "[email protected]" },
{ name = "cpplint developers" },
]
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
Expand All @@ -29,7 +29,6 @@ classifiers = [
"Natural Language :: English",
"Programming Language :: C++",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -43,7 +42,7 @@ dependencies = [ ]
optional-dependencies.dev = [
"mypy",
"parameterized",
"pylint>=2.11",
"pylint>=3.3.5",
"pytest",
"pytest-cov",
"pytest-timeout",
Expand Down