Skip to content

Drop Python 3.7 support #218

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
119 changes: 2 additions & 117 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "ni-python-styleguide"
# The a.0 here denotes a source based version
# This is removed when released through the Publish-Package.yml GitHub action
# Official PyPI releases follow Major.Minor.Patch
version = "0.4.6a0"
version = "0.5.0a0"
description = "NI's internal and external Python linter rules and plugins"
authors = ["NI <opensource@ni.com>"]
readme = "README.md" # apply the repo readme to the package as well
Expand All @@ -13,16 +13,16 @@ include = ["ni_python_styleguide/config.toml"]


[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
pathspec = ">=0.11.1"

# Tools we aggregate
flake8 = [
{version = "^5.0", python = ">=3.7,<3.12"},
{version = "^5.0", python = ">=3.8,<3.12"},
{version = "^6.1", python = "^3.12"},
]
pycodestyle = [
{version = "^2.9", python = ">=3.7,<3.12"},
{version = "^2.9", python = ">=3.8,<3.12"},
{version = "^2.11", python = "^3.12"},
]
black = ">=23.1"
Expand All @@ -45,8 +45,6 @@ pep8-naming = ">=0.11.1"
# flake8-isort: Already covered by flake8-import-order
# hacking: Most rules are either covered by other plugins or would be turned off.

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


[tool.poetry.dev-dependencies]
Expand Down
Loading