Skip to content

Commit

Permalink
adding blinker for setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sabuhish committed Nov 29, 2020
1 parent 4e23b77 commit c3846d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel jinja2>=2.11.2 twine fastapi>=0.61.2 aioredis>=1.3.1 httpx>=0.16.1 starlette pydantic>=1.7.1 aiosmtplib>=1.1.4 python-multipart>=0.0.5 email-validator>=1.1.1
pip install setuptools wheel jinja2>=2.11.2 blinker>=1.4 twine fastapi>=0.61.2 aioredis>=1.3.1 httpx>=0.16.1 starlette pydantic>=1.7.1 aiosmtplib>=1.1.4 python-multipart>=0.0.5 email-validator>=1.1.1
python -c "import sys; print(sys.version)"
- name: Build and publish
Expand Down
2 changes: 1 addition & 1 deletion fastapi_mail/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
PY3 = sys.version_info[0] == 3


VERSION = "0.3.0.5"
VERSION = "0.3.0.6"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
long_description_content_type="text/markdown",
license='MIT',
url="https://github.com/sabuhish/fastapi-mail",
install_requires=["fastapi>=0.61.2",'jinja2>=2.11.2',"aiosmtplib>=1.1.4","python-multipart>=0.0.5", "pydantic>=1.7.1","email-validator>=1.1.1","aioredis>=1.3.1","httpx>=0.16.1"],
install_requires=["fastapi>=0.61.2",'jinja2>=2.11.2',"aiosmtplib>=1.1.4","python-multipart>=0.0.5", "pydantic>=1.7.1","email-validator>=1.1.1","aioredis>=1.3.1","httpx>=0.16.1", "blinker>=1.4"],
platforms=['any'],
packages=setuptools.find_packages(),
classifiers=[
Expand Down

0 comments on commit c3846d3

Please # to comment.