Skip to content

Commit

Permalink
release 0.0.60 (#52)
Browse files Browse the repository at this point in the history
* fix tests

---------

Co-authored-by: nggit <[email protected]>
  • Loading branch information
nggit and nggit authored Nov 21, 2024
1 parent 80fd334 commit f3bca00
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion httpout/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2024 nggit

__version__ = '0.0.55'
__version__ = '0.0.60'
__all__ = ('HTTPOut',)

from .httpout import HTTPOut # noqa: E402
2 changes: 1 addition & 1 deletion httpout/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ def threads(value, **context):
sys.exit(1)

if 'server_name' not in options:
options['server_name'] = b'httpout'
options['server_name'] = 'HTTPOut'

app.run(**options)
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.774',
'tremolo>=0.0.777',
]
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.774
tremolo>=0.0.777
5 changes: 3 additions & 2 deletions tests/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,14 @@


def main():
mp.set_start_method('spawn')
mp.set_start_method('spawn', force=True)

p = mp.Process(
target=app.run,
kwargs=dict(
host=HTTP_HOST, port=HTTP_PORT,
document_root=DOCUMENT_ROOT, app=None, debug=False
document_root=DOCUMENT_ROOT, app=None, debug=False,
server_name='HTTPOut'
)
)
p.start()
Expand Down

0 comments on commit f3bca00

Please sign in to comment.