Skip to content
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

fix #450: update to black v24 #452

Merged
merged 1 commit into from
Mar 14, 2024
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
1 change: 1 addition & 0 deletions pykern/pkasyncio.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
:copyright: Copyright (c) 2022 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""

from pykern import pkconfig
from pykern.pkdebug import pkdlog, pkdp
import asyncio
Expand Down
1 change: 1 addition & 0 deletions pykern/pkcli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
:copyright: Copyright (c) 2015-2023 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""

import argh
import argh.assembling
import argparse
Expand Down
1 change: 1 addition & 0 deletions pykern/pkcli/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
:copyright: Copyright (c) 2013-2018 Bivio Software, Inc. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""

from pykern import pkcli
from pykern import pkconfig
from pykern import pkio
Expand Down
1 change: 1 addition & 0 deletions pykern/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
:copyright: Copyright (c) 2023 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""

# Root module: Limit imports to avoid dependency issues
import os.path
import sys
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def _requires():
return [_urllib3()] + [
"argh>=0.26",
"black~=22.12",
"black~=24.2",
"future>=0.14",
"github3.py>=1.1",
# for virtualenv
Expand Down
1 change: 1 addition & 0 deletions tests/pkcli/github_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
:copyright: Copyright (c) 2019 Bivio Software, Inc. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""

from pykern.pkcollections import PKDict
import pytest
import os
Expand Down
1 change: 1 addition & 0 deletions tests/pkcli_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
:copyright: Copyright (c) 2015-2023 Bivio Software, Inc. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""

import pytest


Expand Down
1 change: 1 addition & 0 deletions tests/pkio_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
:copyright: Copyright (c) 2015 Bivio Software, Inc. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""

import glob
import os
import py
Expand Down
Loading