Skip to content

Commit

Permalink
update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
nggit committed Nov 15, 2024
1 parent b337a59 commit a2804cc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion httpout/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from httpout import __version__, HTTPOut

app = tremolo.Tremolo()
app = tremolo.Application()

HTTPOut(app)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ description = """\
requires-python = '>=3.7'
dependencies = [
'awaiter',
'tremolo>=0.0.770',
'tremolo>=0.0.774',
]
license = { text = 'MIT License' }
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
awaiter
tremolo>=0.0.770
tremolo>=0.0.774
4 changes: 2 additions & 2 deletions tests/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
# makes imports relative from the repo directory
sys.path.insert(0, PROJECT_DIR)

from tremolo import Tremolo # noqa: E402
from tremolo import Application # noqa: E402
from httpout import HTTPOut # noqa: E402

app = Tremolo()
app = Application()

HTTPOut(app)

Expand Down

0 comments on commit a2804cc

Please sign in to comment.