Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v5
- uses: codespell-project/actions-codespell@v2
- uses: astral-sh/ruff-action@v3
- run: ruff format --check --diff --config='format.quote-style="preserve"'
- run: ruff format --check --diff

pytest:
needs: codespell_and_ruff
Expand Down
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@

pkg_ns = {}

ver_path = convert_path('Mock/__init__.py')
ver_path = convert_path("Mock/__init__.py")
with open(ver_path) as ver_file:
exec(ver_file.read(), pkg_ns)

setup(
name='Mock.GPIO',
version=pkg_ns['__version__'],
description='Mock Library for RPi.GPIO',
url='https://github.com/codenio/',
author='Aananth K',
author_email='aananthraj1995@gmail.com',
license='GPL-3.0',
name="Mock.GPIO",
version=pkg_ns["__version__"],
description="Mock Library for RPi.GPIO",
url="https://github.com/codenio/",
author="Aananth K",
author_email="aananthraj1995@gmail.com",
license="GPL-3.0",
packages=find_packages(exclude=[]),
install_requires=[],
zip_safe=False,
Expand Down
Loading