Skip to content

Commit e7946b2

Browse files
authored
Drop Python 3.7 support (#218)
* bump version * drop 3.7 support
1 parent 9950581 commit e7946b2

File tree

2 files changed

+6
-123
lines changed

2 files changed

+6
-123
lines changed

poetry.lock

Lines changed: 2 additions & 117 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "ni-python-styleguide"
33
# The a.0 here denotes a source based version
44
# This is removed when released through the Publish-Package.yml GitHub action
55
# Official PyPI releases follow Major.Minor.Patch
6-
version = "0.4.6a0"
6+
version = "0.5.0a0"
77
description = "NI's internal and external Python linter rules and plugins"
88
authors = ["NI <[email protected]>"]
99
readme = "README.md" # apply the repo readme to the package as well
@@ -13,16 +13,16 @@ include = ["ni_python_styleguide/config.toml"]
1313

1414

1515
[tool.poetry.dependencies]
16-
python = "^3.7"
16+
python = "^3.8"
1717
pathspec = ">=0.11.1"
1818

1919
# Tools we aggregate
2020
flake8 = [
21-
{version = "^5.0", python = ">=3.7,<3.12"},
21+
{version = "^5.0", python = ">=3.8,<3.12"},
2222
{version = "^6.1", python = "^3.12"},
2323
]
2424
pycodestyle = [
25-
{version = "^2.9", python = ">=3.7,<3.12"},
25+
{version = "^2.9", python = ">=3.8,<3.12"},
2626
{version = "^2.11", python = "^3.12"},
2727
]
2828
black = ">=23.1"
@@ -45,8 +45,6 @@ pep8-naming = ">=0.11.1"
4545
# flake8-isort: Already covered by flake8-import-order
4646
# hacking: Most rules are either covered by other plugins or would be turned off.
4747

48-
# Tooling that we're locking so our tool can run
49-
importlib-metadata = {version= "<5.0", python="<3.8"}
5048

5149

5250
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)