Skip to content

Commit 7ec7871

Browse files
committed
Remove verbose logging and update homebrew formulae (may be fixed?)
1 parent cb69386 commit 7ec7871

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

helper/homebrew/develop/proxy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class Proxy < Formula
77
url "https://github.com/abhinavsingh/proxy.py/archive/develop.zip"
88
version "develop"
99

10-
depends_on "python"
10+
depends_on "python@3.10"
1111

1212
def install
1313
virtualenv_install_with_resources

helper/homebrew/stable/proxy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Proxy < Formula
88
sha256 "715687cebd451285d266f29d6509a64becc93da21f61ba9b4414e7dc4ecaaeed"
99
version "2.3.1"
1010

11-
depends_on "python"
11+
depends_on "python@3.10"
1212

1313
def install
1414
virtualenv_install_with_resources

proxy/core/connection/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def recv(
7070
'received %d bytes from %s' %
7171
(len(data), self.tag),
7272
)
73-
logger.info(data)
73+
# logger.info(data)
7474
return memoryview(data)
7575

7676
def close(self) -> bool:

0 commit comments

Comments
 (0)