Skip to content

Commit

Permalink
Merge pull request #5 from kipe/python2-fixes
Browse files Browse the repository at this point in the history
Fix to a bug with Python 2.7
  • Loading branch information
kipe committed Dec 21, 2020
2 parents 9cd6bd3 + dbc9791 commit da6194c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9']
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9']

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions fmi/fmi.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,5 @@ def forecast(self, model='hirlam', **params):
return self.get(
'fmi::forecast::%s::surface::point::timevaluepair' % (model),
maxlocations=1,
**params,
klass=Forecast)
klass=Forecast,
**params)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='fmi_weather',
version='1.1.0',
version='1.1.1',
description='FMI weather data fetcher',
author='Kimmo Huoman',
author_email='kipenroskaposti@gmail.com',
Expand Down

0 comments on commit da6194c

Please sign in to comment.