diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d61724..b053fb4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/setup.py b/setup.py index 66afa21..6920394 100644 --- a/setup.py +++ b/setup.py @@ -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,