Skip to content

Commit

Permalink
push to version 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
null8626 committed Jul 26, 2021
1 parent 85a8545 commit 395de42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion example.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ async def getweather():
client = python_weather.Client(format=python_weather.IMPERIAL)

# fetch a weather forecast from a city
weather = await client.find("Washington DC")
weather = await client.find("Calgery Alberta")

# returns the current day's forecast temperature (int)
print(weather.current.temperature)
Expand Down
2 changes: 1 addition & 1 deletion python_weather/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@

METRIC = "C"
IMPERIAL = "F"
__version__ = "0.3.5"
__version__ = "0.3.6"
__all__ = ("Client", "METRIC", "IMPERIAL", "HTTPException", "__version__")
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
setup(
name='python-weather',
packages=['python_weather'],
version='0.3.5',
version='0.3.6',
license='MIT',
description='A free and asynchronous Weather API Wrapper.',
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='vierofernando',
author_email='[email protected]',
url='https://github.com/vierofernando/python-weather',
download_url='https://github.com/vierofernando/python-weather/archive/0.3.5.tar.gz',
download_url='https://github.com/vierofernando/python-weather/archive/0.3.6.tar.gz',
keywords=['Weather', 'API', 'Weather API', 'API Wrapper', 'Weather CLI', 'CLI'],
install_requires=[
'aiohttp>=3.7.4',
Expand Down

0 comments on commit 395de42

Please sign in to comment.