meteocatpy 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,6 +5,11 @@ on:
5
5
  branches:
6
6
  - master
7
7
 
8
+ permissions:
9
+ contents: write
10
+ issues: write
11
+ pull-requests: write
12
+
8
13
  jobs:
9
14
  release:
10
15
  name: Create Release
@@ -28,6 +33,6 @@ jobs:
28
33
  # Paso 4: Ejecutar semantic-release
29
34
  - name: Run semantic-release
30
35
  env:
31
- GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
36
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
37
  NPM_TOKEN: ${{ secrets.NPM_WORKFLOW }}
33
38
  run: npx semantic-release
package/CHANGELOG.md CHANGED
@@ -1,12 +1,20 @@
1
+ ## [1.0.6](https://github.com/figorr/meteocatpy/compare/v1.0.5...v1.0.6) (2026-04-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * 0.0.0 ([057e1e3](https://github.com/figorr/meteocatpy/commit/057e1e3912886df78553995a5342b3ae714ac82b))
7
+ * bump meteocatpy to 1.0.6 ([7940806](https://github.com/figorr/meteocatpy/commit/79408067263cdc2dcdc640afd8728c0e2b086ab6))
8
+ * fix dependencies ([70c7894](https://github.com/figorr/meteocatpy/commit/70c7894c19d20f753ecbcbedcbd747d07c7ef196))
9
+ * fix workflow ([526e817](https://github.com/figorr/meteocatpy/commit/526e8170358dc9dedd0509e963e8b26d9707c07a))
10
+
1
11
  ## [1.0.5](https://github.com/figorr/meteocatpy/compare/v1.0.4...v1.0.5) (2026-01-10)
2
12
 
3
13
 
4
14
  ### Bug Fixes
5
15
 
6
- * 0.0.0 ([73e15b8](https://github.com/figorr/meteocatpy/commit/73e15b84a2e9576d0afefa174a7999901d0b6413))
7
16
  * update dependencies for HA 2026.1 compatibility ([74523fe](https://github.com/figorr/meteocatpy/commit/74523fee7dc6a8244ec1ef61fda32e04e5c09bd8))
8
17
  * update voluptuous for HA 2026.1 compatibility ([57d4003](https://github.com/figorr/meteocatpy/commit/57d400318652ce6fa6dd37a7e6c8abad4c8b834d))
9
- * v1.0.5 ([9a57b77](https://github.com/figorr/meteocatpy/commit/9a57b778ff160dfda9cf064e49d41ac6d5744f52))
10
18
 
11
19
  ## [1.0.4](https://github.com/figorr/meteocatpy/compare/v1.0.3...v1.0.4) (2026-01-09)
12
20
 
@@ -1,2 +1,2 @@
1
1
  # version.py
2
- __version__ = "1.0.5"
2
+ __version__ = "1.0.6"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meteocatpy",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\r [![Python version compatibility](https://img.shields.io/pypi/pyversions/meteocatpy)](https://pypi.org/project/meteocatpy)\r [![pipeline status](https://gitlab.com/figorr/meteocatpy/badges/master/pipeline.svg)](https://gitlab.com/figorr/meteocatpy/commits/master)",
5
5
  "main": "index.js",
6
6
  "directories": {
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "meteocatpy"
3
- version = "1.0.5"
3
+ version = "1.0.6"
4
4
  description = "Script para obtener datos meteorológicos de la API de Meteocat"
5
5
  authors = ["figorr <jdcuartero@yahoo.es>"]
6
6
  license = "Apache-2.0"
@@ -11,12 +11,7 @@ keywords = ['meteocatpy', 'meteocat']
11
11
 
12
12
  [tool.poetry.dependencies]
13
13
  python = ">=3.12,<4.0"
14
- requests = "^2.32.3"
15
- python-dotenv = "^1.0.1"
16
14
  simplejson = "^3.19.3"
17
- setuptools = "^75.5.0"
18
- python-semantic-release = "^7.28.1"
19
- twine = ">=3,<4"
20
15
  aiofiles = "^24.1.0"
21
16
  voluptuous = ">=0.15.2"
22
17
  geopy = "^2.4.1"
@@ -26,7 +21,6 @@ aiohttp = [
26
21
  {version = ">=3.8.0", python = ">=3.14"}
27
22
  ]
28
23
  diskcache = "^5.6.3"
29
- semantic-release = "^0.1.0"
30
24
 
31
25
 
32
26
  [tool.semantic_release]
@@ -43,36 +37,46 @@ requires = ["poetry-core"]
43
37
  build-backend = "poetry.core.masonry.api"
44
38
 
45
39
 
46
- [tool.poetry.dev-dependencies]
40
+ # ==================== DEPENDENCIAS DE DESARROLLO ====================
41
+ [tool.poetry.group.dev.dependencies]
42
+ # Herramientas de release y publicación
43
+ python-semantic-release = "^7.28.1"
44
+ semantic-release = "^0.1.0"
45
+ twine = ">=3,<4"
46
+
47
+ # Testing
48
+ pytest = "^8.3.3"
49
+ pytest-asyncio = "^0.24.0"
50
+ pytest-aiohttp = "*"
51
+ syrupy = "^4.7.2"
47
52
  aresponses = "*"
48
- detox = "*"
53
+
54
+ # Linting y calidad de código
55
+ black = { version = ">19.10b0", allow-prereleases = true }
56
+ pyupgrade = "^3.4.0"
57
+ pre-commit = "^3.3.1"
49
58
  flake8 = "*"
59
+ pylint = "*"
50
60
  mypy = "*"
51
61
  pydocstyle = "*"
52
- pylint = "*"
53
- pytest-aiohttp = "*"
54
- pytest-cov = "*"
55
- python-semantic-release = "^7.28.1"
56
- tox = "*"
57
- safety = ">=1.8.7"
58
- black = { version = ">19.10b0", allow-prereleases = true }
62
+
63
+ # Documentación
59
64
  Sphinx = ">=3.5.0,<7.0.0"
60
- autoapi = ">=2.0.1"
61
65
  sphinx-rtd-theme = "^0.5.1"
62
- m2r2 = ">=0.2.7"
63
- tomlkit = ">=0.7.0"
64
66
  sphinx-autoapi = ">=1.7.0"
65
67
  sphinx-copybutton = ">=0.3.1"
66
- pipdeptree = "^2.2.1"
68
+ m2r2 = ">=0.2.7"
69
+ autoapi = ">=2.0.1"
70
+ tomlkit = ">=0.7.0"
67
71
 
72
+ # Otras herramientas útiles
73
+ tox = "*"
74
+ safety = ">=1.8.7"
75
+ pipdeptree = "^2.2.1"
76
+ detox = "*"
68
77
 
69
- [tool.poetry.group.dev.dependencies]
70
- pyupgrade = "^3.4.0"
71
- pre-commit = "^3.3.1"
72
- pytest = "^8.3.3"
73
- pytest-asyncio = "^0.24.0"
74
- syrupy = "^4.7.2"
78
+ # Comentado (si lo necesitas en el futuro)
75
79
  # aioresponses = [
76
80
  # {version = "^0.7.7", python = "<3.14"},
77
81
  # {version = "^0.8.0", python = ">=3.14"}
78
- # ]
82
+ # ]