Skip to content

Commit

Permalink
Update version (#62)
Browse files Browse the repository at this point in the history
* Update requests

* Drop python 3.8. Update versions.

* Update github action

* Update README
  • Loading branch information
saaste authored Oct 14, 2024
1 parent 84cb92c commit 8fe129b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: tests
on: [pull_request]
on:
pull_request:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ For the current weather information, this library requests observations from the

Originally, I created this for myself to get FMI weather data to [Home Assistant](https://www.home-assistant.io/). I am not a meteorologist so if you are more weather-savvy, feel free to contribute and provide improvements! 💖

**FYI: I don't use Home Assistant or this library anymore, so I may not know if things are broken or need updating. However, I'm more than happy to maintain this library, so if you find a bug or a need to update a dependency, feel free to file an issue. Even better, file a pull request that fixes the issues! 😉 💖**

## How to use

Working example can be found in [example.py](example.py).
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
requests==2.32.2
requests==2.32.3
xmltodict==0.14.1
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="fmi-weather-client",
version="0.3.0",
version="0.4.0",
author="Mika Hiltunen",
author_email="[email protected]",
description="Library for fetching weather information from Finnish Meteorological Institute (FMI)",
Expand All @@ -14,17 +14,17 @@
url="https://github.com/saaste/fmi-weather-client",
packages=setuptools.find_packages(exclude=["*test", "*test.*"]),
install_requires=[
'requests>=2.32.2',
'xmltodict>=0.13.0'
'requests>=2.32.3',
'xmltodict>=0.14.1'
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.8.19',
python_requires='>=3.9.20',
)

0 comments on commit 8fe129b

Please sign in to comment.