Skip to content

Commit

Permalink
Merge branch 'release/3.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Dec 31, 2024
2 parents c0f15c6 + 22a68d0 commit 9155166
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion portalocker/__about__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__package_name__ = 'portalocker'
__author__ = 'Rick van Hattem'
__email__ = 'wolph@wol.ph'
__version__ = '3.1.0'
__version__ = '3.1.1'
__description__ = """Wraps the portalocker recipe for easy usage"""
__url__ = 'https://github.com/WoLpH/portalocker'
2 changes: 1 addition & 1 deletion portalocker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#: Current author's email address
__email__ = __about__.__email__
#: Version number
__version__ = '3.1.0'
__version__ = '3.1.1'
#: Package description for Pypi
__description__ = __about__.__description__
#: Package homepage
Expand Down
3 changes: 2 additions & 1 deletion portalocker/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ def combine(args: argparse.Namespace) -> None:
logger.info(f'Wrote combined file to {output_file.name}')
# Run black and ruff if available. If not then just run the file.
os.system(f'black {output_file.name}')
os.system(f'ruff --fix {output_file.name}')
os.system(f'ruff format {output_file.name}')
os.system(f'ruff check --fix --fix-only {output_file.name}')
os.system(f'python3 {output_file.name}')


Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ classifiers = [
requires-python = '>=3.9'
dependencies = [
'pywin32>=226; platform_system == "Windows"',
'tomli-w>=1.0.0',
'tomlkit>=0.13.2',
]

[project.urls]
Expand Down

0 comments on commit 9155166

Please sign in to comment.