-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade version to use python 3.11 and pylint to 2.15.4
- Loading branch information
1 parent
ce1f88d
commit ab125dc
Showing
7 changed files
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- published | ||
|
||
env: | ||
DEFAULT_PYTHON: 3.9 | ||
DEFAULT_PYTHON: 3.10 | ||
|
||
jobs: | ||
release-pypi: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import enum | ||
|
||
APPLICATION_NAME = "pre-commit-conf" | ||
TIMEOUT = 10.0 | ||
|
||
|
||
class ExitCode(enum.Enum): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ author_email = [email protected] | |
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
name = centralized-pre-commit-conf | ||
version = 0.5.0 | ||
version = 0.6.0 | ||
description = Easily install and update centralized pre-commit hooks and their configuration files in decentralized repositories | ||
classifiers = | ||
Operating System :: OS Independent | ||
|
@@ -14,6 +14,7 @@ classifiers = | |
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Development Status :: 5 - Production/Stable | ||
url = https://github.com/Pierre-Sassoulas/centralized-pre-commit-conf | ||
|
||
|
@@ -34,7 +35,7 @@ tests_require = | |
python-coveralls | ||
coverage | ||
coveralls | ||
pylint==2.12.2 | ||
pylint==2.15.4 | ||
zip_safe = True | ||
|
||
[options.entry_points] | ||
|
@@ -48,7 +49,7 @@ test = | |
coverage | ||
python-coveralls | ||
coveralls | ||
pylint==2.12.2 | ||
pylint==2.15.4 | ||
|
||
[options.package_data] | ||
centralized_pre_commit_conf = | ||
|