-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* backport from master branch * typo * Add disclaimer about newer API keys getting Authorization errors back when calling OWM legacy endpoints * Add timezone to all datetime objects and fix ISO format of time zone offset. * switched place * minor fixes * more tests for timestamps offset awareness. update docs * unused import * Documentation fixes (#323) * Fix documentation for accepted values for Weather.wind unit parameter * Add missing single quotation marks in documentation for Weather methods * Update reference link for OWM weather codes and icons * Add One Call functionaly: (1) exclude parts and (2) set desired units * Adding contributors from latest PRs * fixes #324 * Add an FAQ documentation section to help people fixing common issues on PyOWM (which recently occur as repeated GitHub issues) * added documentation to the code recipies; included unit test result * adding results of tox unit tests and integration tests * Update tox_integration_20200807.txt * Update and fix errors * Adding Ankur to contributors * Delete tox_20200807.txt * Delete tox_integration_20200807.txt * more FAQs * Added size argument weatherapi25.weather.weather_icon_url (#337) * Added size argument to weatherapi25.weather.weather_icon_url() * Fixed unit tests for new OWM icons * Fixed previous pushed unit test * Add Wesley-Vos * Exposed list of OWM supported languages * Removed dependency version pinning, this should fix #334 * forgot * This should address #332 * Documented workaround to install from the development branch, as stated in #341 (comment) and #318 * update docs (fixed typos) * documentation improvements * version dump * fixed test Co-authored-by: Miroslav Šedivý <6774676+eumiro@users.noreply.github.com> Co-authored-by: Harmon <Harmon758@gmail.com> Co-authored-by: jwmelvin <jwmelvin@gmail.com> Co-authored-by: Wesley Vos <17592840+Wesley-Vos@users.noreply.github.com>
- Loading branch information
1 parent
e35446e
commit 769a2a4
Showing
56 changed files
with
1,185 additions
and
518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ coverage | |
coveralls | ||
Jinja2 | ||
pip>=18.0 | ||
pproxy<3 | ||
pproxy>=2.2.0,<3 | ||
pytest | ||
recommonmark | ||
Sphinx | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,61 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
PYOWM_VERSION = (3, 0, 0) | ||
PYOWM_VERSION = (3, 1, 0) | ||
AGRO_API_VERSION = (1, 0, 0) | ||
AIRPOLLUTION_API_VERSION = (3, 0, 0) | ||
ALERT_API_VERSION = (3, 0, 0) | ||
STATIONS_API_VERSION = (3, 0, 0) | ||
UVINDEX_API_VERSION = (3, 0, 0) | ||
WEATHER_API_VERSION = (2, 5, 0) | ||
LANGUAGES = [ | ||
"af", | ||
"al", | ||
"ar", | ||
"az", | ||
"bg", | ||
"ca", | ||
"cz", | ||
"da", | ||
"de", | ||
"el", | ||
"en", | ||
"es", | ||
"eu", | ||
"fa", | ||
"fi", | ||
"fr", | ||
"gl", | ||
"he", | ||
"hi", | ||
"hr", | ||
"hu", | ||
"id", | ||
"it", | ||
"ja", | ||
"kr", | ||
"la", | ||
"lt", | ||
"mk", | ||
"nl", | ||
"no", | ||
"pl", | ||
"pt", | ||
"pt_br", | ||
"ro", | ||
"ru", | ||
"se", | ||
"sk", | ||
"sl", | ||
"sp", | ||
"sr", | ||
"sv", | ||
"th", | ||
"tr", | ||
"ua", | ||
"uk", | ||
"vi", | ||
"zh_cn", | ||
"zh_tw", | ||
"zu", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.