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

release 0.0.44 #40

Merged
merged 6 commits into from
Nov 6, 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
2 changes: 1 addition & 1 deletion .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
python -m venv --system-site-packages .local
echo "$HOME/.local/bin" >> $GITHUB_PATH
python -m pip install --upgrade pip build setuptools
python -m pip install --upgrade pip build setuptools Cython

- name: Build sdist and verify its integrity
run: |
Expand Down
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.43'
__version__ = '0.0.44'
__all__ = ('HTTPOut',)

from .httpout import HTTPOut # noqa: E402
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = [ 'setuptools>=61.0', 'wheel' ]
requires = [ 'setuptools>=61.0', 'wheel', 'Cython' ]
build-backend = 'setuptools.build_meta'

[project]
Expand All @@ -15,7 +15,7 @@ description = """\
requires-python = '>=3.7'
dependencies = [
'awaiter',
'tremolo>=0.0.753',
'tremolo>=0.0.760',
]
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.753
tremolo>=0.0.760
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ def build_extension(self, ext):

setup(
ext_modules=cythonize(extensions),
cmdclass={'build_ext': OptionalBuildExt}
cmdclass={'build_ext': OptionalBuildExt},
setup_requires=['Cython']
)
Loading