meteocatpy 0.0.7 → 0.0.8
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.
- package/.github/workflows/release.yml +33 -33
- package/.gitlab-ci.yml +46 -46
- package/.pre-commit-config.yaml +37 -37
- package/.releaserc +23 -23
- package/.releaserc.toml +14 -14
- package/AUTHORS.md +12 -12
- package/CHANGELOG.md +145 -137
- package/README.md +61 -61
- package/filetree.py +48 -48
- package/filetree.txt +48 -48
- package/meteocatpy/README.md +61 -61
- package/meteocatpy/__init__.py +27 -27
- package/meteocatpy/const.py +10 -10
- package/meteocatpy/data.py +93 -140
- package/meteocatpy/exceptions.py +35 -35
- package/meteocatpy/forecast.py +137 -137
- package/meteocatpy/helpers.py +46 -46
- package/meteocatpy/stations.py +71 -71
- package/meteocatpy/symbols.py +89 -89
- package/meteocatpy/town.py +61 -61
- package/meteocatpy/townstations.py +99 -99
- package/meteocatpy/variables.py +74 -74
- package/meteocatpy/version.py +2 -2
- package/package.json +23 -23
- package/poetry.lock +3313 -3313
- package/pyproject.toml +72 -72
- package/releaserc.json +17 -17
- package/requirements.test.txt +3 -3
- package/setup.cfg +64 -64
- package/setup.py +10 -10
- package/tests/data_test.py +122 -122
- package/tests/import_test.py +18 -18
- package/tests/integration_test_complete.py +76 -76
- package/tests/integration_test_forecast.py +54 -54
- package/tests/integration_test_station_data.py +33 -33
- package/tests/integration_test_stations.py +31 -31
- package/tests/integration_test_symbols.py +68 -68
- package/tests/integration_test_town.py +32 -32
- package/tests/integration_test_town_stations.py +36 -36
- package/tests/integration_test_variables.py +32 -32
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
name: Release
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- master
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
release:
|
|
10
|
-
name: Create Release
|
|
11
|
-
runs-on: ubuntu-latest
|
|
12
|
-
|
|
13
|
-
steps:
|
|
14
|
-
# Paso 1: Configurar el repositorio
|
|
15
|
-
- name: Checkout repository
|
|
16
|
-
uses: actions/checkout@v3
|
|
17
|
-
|
|
18
|
-
# Paso 2: Configurar Node.js (requerido para semantic-release)
|
|
19
|
-
- name: Set up Node.js
|
|
20
|
-
uses: actions/setup-node@v3
|
|
21
|
-
with:
|
|
22
|
-
node-version: 20.8.1 # Versión compatible con semantic-release
|
|
23
|
-
|
|
24
|
-
# Paso 3: Instalar dependencias necesarias
|
|
25
|
-
- name: Install dependencies
|
|
26
|
-
run: npm ci
|
|
27
|
-
|
|
28
|
-
# Paso 4: Ejecutar semantic-release
|
|
29
|
-
- name: Run semantic-release
|
|
30
|
-
env:
|
|
31
|
-
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
|
|
32
|
-
NPM_TOKEN: ${{ secrets.NPM_WORKFLOW }}
|
|
33
|
-
run: npx semantic-release
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
release:
|
|
10
|
+
name: Create Release
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
|
|
13
|
+
steps:
|
|
14
|
+
# Paso 1: Configurar el repositorio
|
|
15
|
+
- name: Checkout repository
|
|
16
|
+
uses: actions/checkout@v3
|
|
17
|
+
|
|
18
|
+
# Paso 2: Configurar Node.js (requerido para semantic-release)
|
|
19
|
+
- name: Set up Node.js
|
|
20
|
+
uses: actions/setup-node@v3
|
|
21
|
+
with:
|
|
22
|
+
node-version: 20.8.1 # Versión compatible con semantic-release
|
|
23
|
+
|
|
24
|
+
# Paso 3: Instalar dependencias necesarias
|
|
25
|
+
- name: Install dependencies
|
|
26
|
+
run: npm ci
|
|
27
|
+
|
|
28
|
+
# Paso 4: Ejecutar semantic-release
|
|
29
|
+
- name: Run semantic-release
|
|
30
|
+
env:
|
|
31
|
+
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
|
|
32
|
+
NPM_TOKEN: ${{ secrets.NPM_WORKFLOW }}
|
|
33
|
+
run: npx semantic-release
|
package/.gitlab-ci.yml
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
stages:
|
|
2
|
-
- github
|
|
3
|
-
- pypi
|
|
4
|
-
|
|
5
|
-
variables:
|
|
6
|
-
BASE_URL: "https://api.meteo.cat"
|
|
7
|
-
PYPI_USERNAME: $PRODUCTION_USERNAME # Usuario de PyPi
|
|
8
|
-
PYPI_PASSWORD: $PRODUCTION_PASSWORD # Token de PyPi
|
|
9
|
-
PYPI_API_TOKEN: $PYPI_API_TOKEN # Token de PyPi
|
|
10
|
-
GL_TOKEN: $GL_TOKEN # Token de GitLab
|
|
11
|
-
GH_TOKEN: $GH_TOKEN # Token de GitHub
|
|
12
|
-
GH_REMOTE_URL: $GH_REMOTE_URL # GH Remote URL Repository
|
|
13
|
-
GL_REMOTE_URL: $GL_REMOTE_URL # GL Remote URL Repository
|
|
14
|
-
GIT_USER_NAME: $GIT_USER_NAME # USER NAME FOR GIT
|
|
15
|
-
GIT_USER_EMAIL: $GIT_USER_EMAIL # USER EMAIL FOR GIT
|
|
16
|
-
GIT_STRATEGY: fetch
|
|
17
|
-
GIT_DEPTH: 0
|
|
18
|
-
|
|
19
|
-
default:
|
|
20
|
-
image: python:3.12.7
|
|
21
|
-
before_script:
|
|
22
|
-
- python -V # Verificar versión de Python
|
|
23
|
-
- python -m pip install --upgrade pip
|
|
24
|
-
- pip install poetry # Instalar Poetry
|
|
25
|
-
- poetry config virtualenvs.create true # Activada la creación de entornos virtuales
|
|
26
|
-
- poetry config virtualenvs.in-project true # Crear el virtualenv en el directorio del proyecto
|
|
27
|
-
- poetry install # Instalar dependencias con Poetry
|
|
28
|
-
|
|
29
|
-
github_job:
|
|
30
|
-
stage: github
|
|
31
|
-
script:
|
|
32
|
-
- git checkout master # Asegurarse de estar en la rama master
|
|
33
|
-
- git remote set-url origin "$GH_REMOTE_URL" # Cambiar la URL para GitHub
|
|
34
|
-
# - poetry run semantic-release version # Generar nueva versión
|
|
35
|
-
# - poetry run semantic-release publish # Ejecutar el comando para publicar el release
|
|
36
|
-
- git push origin master # Hacer push al repositorio de GitHub
|
|
37
|
-
allow_failure: true # Opcional: evita que el pipeline falle completamente
|
|
38
|
-
only:
|
|
39
|
-
- master
|
|
40
|
-
|
|
41
|
-
pypy_job:
|
|
42
|
-
stage: pypi
|
|
43
|
-
script:
|
|
44
|
-
- poetry publish --build -u "__token__" -p $PYPI_API_TOKEN # Usar el token de API de PyPI
|
|
45
|
-
only:
|
|
46
|
-
- master
|
|
1
|
+
stages:
|
|
2
|
+
- github
|
|
3
|
+
- pypi
|
|
4
|
+
|
|
5
|
+
variables:
|
|
6
|
+
BASE_URL: "https://api.meteo.cat"
|
|
7
|
+
PYPI_USERNAME: $PRODUCTION_USERNAME # Usuario de PyPi
|
|
8
|
+
PYPI_PASSWORD: $PRODUCTION_PASSWORD # Token de PyPi
|
|
9
|
+
PYPI_API_TOKEN: $PYPI_API_TOKEN # Token de PyPi
|
|
10
|
+
GL_TOKEN: $GL_TOKEN # Token de GitLab
|
|
11
|
+
GH_TOKEN: $GH_TOKEN # Token de GitHub
|
|
12
|
+
GH_REMOTE_URL: $GH_REMOTE_URL # GH Remote URL Repository
|
|
13
|
+
GL_REMOTE_URL: $GL_REMOTE_URL # GL Remote URL Repository
|
|
14
|
+
GIT_USER_NAME: $GIT_USER_NAME # USER NAME FOR GIT
|
|
15
|
+
GIT_USER_EMAIL: $GIT_USER_EMAIL # USER EMAIL FOR GIT
|
|
16
|
+
GIT_STRATEGY: fetch
|
|
17
|
+
GIT_DEPTH: 0
|
|
18
|
+
|
|
19
|
+
default:
|
|
20
|
+
image: python:3.12.7
|
|
21
|
+
before_script:
|
|
22
|
+
- python -V # Verificar versión de Python
|
|
23
|
+
- python -m pip install --upgrade pip
|
|
24
|
+
- pip install poetry # Instalar Poetry
|
|
25
|
+
- poetry config virtualenvs.create true # Activada la creación de entornos virtuales
|
|
26
|
+
- poetry config virtualenvs.in-project true # Crear el virtualenv en el directorio del proyecto
|
|
27
|
+
- poetry install # Instalar dependencias con Poetry
|
|
28
|
+
|
|
29
|
+
github_job:
|
|
30
|
+
stage: github
|
|
31
|
+
script:
|
|
32
|
+
- git checkout master # Asegurarse de estar en la rama master
|
|
33
|
+
- git remote set-url origin "$GH_REMOTE_URL" # Cambiar la URL para GitHub
|
|
34
|
+
# - poetry run semantic-release version # Generar nueva versión
|
|
35
|
+
# - poetry run semantic-release publish # Ejecutar el comando para publicar el release
|
|
36
|
+
- git push origin master # Hacer push al repositorio de GitHub
|
|
37
|
+
allow_failure: true # Opcional: evita que el pipeline falle completamente
|
|
38
|
+
only:
|
|
39
|
+
- master
|
|
40
|
+
|
|
41
|
+
pypy_job:
|
|
42
|
+
stage: pypi
|
|
43
|
+
script:
|
|
44
|
+
- poetry publish --build -u "__token__" -p $PYPI_API_TOKEN # Usar el token de API de PyPI
|
|
45
|
+
only:
|
|
46
|
+
- master
|
package/.pre-commit-config.yaml
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
repos:
|
|
2
|
-
- repo: https://github.com/asottile/pyupgrade
|
|
3
|
-
rev: v3.15.2
|
|
4
|
-
hooks:
|
|
5
|
-
- id: pyupgrade
|
|
6
|
-
args: [--py37-plus]
|
|
7
|
-
- repo: https://github.com/psf/black
|
|
8
|
-
rev: 24.4.2
|
|
9
|
-
hooks:
|
|
10
|
-
- id: black
|
|
11
|
-
args:
|
|
12
|
-
- --safe
|
|
13
|
-
- --quiet
|
|
14
|
-
files: ^((homeassistant|script|tests)/.+)?[^/]+\.py$
|
|
15
|
-
- repo: https://github.com/codespell-project/codespell
|
|
16
|
-
rev: v2.2.6
|
|
17
|
-
hooks:
|
|
18
|
-
- id: codespell
|
|
19
|
-
args:
|
|
20
|
-
- --ignore-words-list=hass,alot,datas,dof,dur,farenheit,hist,iff,ines,ist,lightsensor,mut,nd,pres,referer,ser,serie,te,technik,ue,uint,visability,wan,wanna,withing
|
|
21
|
-
- --skip="./.*,*.csv,*.json"
|
|
22
|
-
- --quiet-level=2
|
|
23
|
-
exclude_types: [csv, json]
|
|
24
|
-
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
|
25
|
-
rev: v0.4.8
|
|
26
|
-
hooks:
|
|
27
|
-
- id: ruff
|
|
28
|
-
args: [--fix, --exit-non-zero-on-fix]
|
|
29
|
-
- id: ruff-format
|
|
30
|
-
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
31
|
-
rev: v1.10.0
|
|
32
|
-
hooks:
|
|
33
|
-
- id: mypy
|
|
34
|
-
args:
|
|
35
|
-
- --pretty
|
|
36
|
-
- --show-error-codes
|
|
37
|
-
- --show-error-context
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/asottile/pyupgrade
|
|
3
|
+
rev: v3.15.2
|
|
4
|
+
hooks:
|
|
5
|
+
- id: pyupgrade
|
|
6
|
+
args: [--py37-plus]
|
|
7
|
+
- repo: https://github.com/psf/black
|
|
8
|
+
rev: 24.4.2
|
|
9
|
+
hooks:
|
|
10
|
+
- id: black
|
|
11
|
+
args:
|
|
12
|
+
- --safe
|
|
13
|
+
- --quiet
|
|
14
|
+
files: ^((homeassistant|script|tests)/.+)?[^/]+\.py$
|
|
15
|
+
- repo: https://github.com/codespell-project/codespell
|
|
16
|
+
rev: v2.2.6
|
|
17
|
+
hooks:
|
|
18
|
+
- id: codespell
|
|
19
|
+
args:
|
|
20
|
+
- --ignore-words-list=hass,alot,datas,dof,dur,farenheit,hist,iff,ines,ist,lightsensor,mut,nd,pres,referer,ser,serie,te,technik,ue,uint,visability,wan,wanna,withing
|
|
21
|
+
- --skip="./.*,*.csv,*.json"
|
|
22
|
+
- --quiet-level=2
|
|
23
|
+
exclude_types: [csv, json]
|
|
24
|
+
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
|
25
|
+
rev: v0.4.8
|
|
26
|
+
hooks:
|
|
27
|
+
- id: ruff
|
|
28
|
+
args: [--fix, --exit-non-zero-on-fix]
|
|
29
|
+
- id: ruff-format
|
|
30
|
+
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
31
|
+
rev: v1.10.0
|
|
32
|
+
hooks:
|
|
33
|
+
- id: mypy
|
|
34
|
+
args:
|
|
35
|
+
- --pretty
|
|
36
|
+
- --show-error-codes
|
|
37
|
+
- --show-error-context
|
package/.releaserc
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
{
|
|
2
|
-
"branches": ["master"],
|
|
3
|
-
"plugins": [
|
|
4
|
-
"@semantic-release/commit-analyzer",
|
|
5
|
-
"@semantic-release/release-notes-generator",
|
|
6
|
-
[
|
|
7
|
-
"@semantic-release/changelog",
|
|
8
|
-
{
|
|
9
|
-
"changelogFile": "CHANGELOG.md"
|
|
10
|
-
}
|
|
11
|
-
],
|
|
12
|
-
"@semantic-release/npm",
|
|
13
|
-
"@semantic-release/github",
|
|
14
|
-
[
|
|
15
|
-
"@semantic-release/git",
|
|
16
|
-
{
|
|
17
|
-
"assets": ["CHANGELOG.md", "package.json", "pyproject.toml"],
|
|
18
|
-
"message": "v${nextRelease.version}\n\n${nextRelease.notes}"
|
|
19
|
-
}
|
|
20
|
-
]
|
|
21
|
-
],
|
|
22
|
-
"repositoryUrl": "https://github.com/figorr/meteocatpy"
|
|
23
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"branches": ["master"],
|
|
3
|
+
"plugins": [
|
|
4
|
+
"@semantic-release/commit-analyzer",
|
|
5
|
+
"@semantic-release/release-notes-generator",
|
|
6
|
+
[
|
|
7
|
+
"@semantic-release/changelog",
|
|
8
|
+
{
|
|
9
|
+
"changelogFile": "CHANGELOG.md"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"@semantic-release/npm",
|
|
13
|
+
"@semantic-release/github",
|
|
14
|
+
[
|
|
15
|
+
"@semantic-release/git",
|
|
16
|
+
{
|
|
17
|
+
"assets": ["CHANGELOG.md", "package.json", "pyproject.toml"],
|
|
18
|
+
"message": "v${nextRelease.version}\n\n${nextRelease.notes}"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
],
|
|
22
|
+
"repositoryUrl": "https://github.com/figorr/meteocatpy"
|
|
23
|
+
}
|
package/.releaserc.toml
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
branches = ["master"]
|
|
2
|
-
|
|
3
|
-
[plugins]
|
|
4
|
-
"@semantic-release/gitlab" = {}
|
|
5
|
-
"@semantic-release/github" = {}
|
|
6
|
-
"@semantic-release/changelog" = {}
|
|
7
|
-
"@semantic-release/commit-analyzer" = { preset = "conventional" }
|
|
8
|
-
"@semantic-release/release-notes-generator" = {}
|
|
9
|
-
"@semantic-release/git" = {}
|
|
10
|
-
|
|
11
|
-
[[plugins]]
|
|
12
|
-
path = "@semantic-release/git"
|
|
13
|
-
assets = ["meteocatpy/version.py"]
|
|
14
|
-
message = "chore(release): update version to ${nextRelease.version}"
|
|
1
|
+
branches = ["master"]
|
|
2
|
+
|
|
3
|
+
[plugins]
|
|
4
|
+
"@semantic-release/gitlab" = {}
|
|
5
|
+
"@semantic-release/github" = {}
|
|
6
|
+
"@semantic-release/changelog" = {}
|
|
7
|
+
"@semantic-release/commit-analyzer" = { preset = "conventional" }
|
|
8
|
+
"@semantic-release/release-notes-generator" = {}
|
|
9
|
+
"@semantic-release/git" = {}
|
|
10
|
+
|
|
11
|
+
[[plugins]]
|
|
12
|
+
path = "@semantic-release/git"
|
|
13
|
+
assets = ["meteocatpy/version.py"]
|
|
14
|
+
message = "chore(release): update version to ${nextRelease.version}"
|
package/AUTHORS.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# Contributions to `meteocatpy`
|
|
2
|
-
|
|
3
|
-
## Owners
|
|
4
|
-
|
|
5
|
-
- Figorr [GitLab](https://gitlab.com/figorr) [GitHub](https://github.com/figorr)
|
|
6
|
-
|
|
7
|
-
## Maintainers
|
|
8
|
-
|
|
9
|
-
- Figorr [GitLab](https://gitlab.com/figorr) [GitHub](https://github.com/figorr)
|
|
10
|
-
|
|
11
|
-
## Contributors
|
|
12
|
-
|
|
1
|
+
# Contributions to `meteocatpy`
|
|
2
|
+
|
|
3
|
+
## Owners
|
|
4
|
+
|
|
5
|
+
- Figorr [GitLab](https://gitlab.com/figorr) [GitHub](https://github.com/figorr)
|
|
6
|
+
|
|
7
|
+
## Maintainers
|
|
8
|
+
|
|
9
|
+
- Figorr [GitLab](https://gitlab.com/figorr) [GitHub](https://github.com/figorr)
|
|
10
|
+
|
|
11
|
+
## Contributors
|
|
12
|
+
|
package/CHANGELOG.md
CHANGED
|
@@ -1,137 +1,145 @@
|
|
|
1
|
-
## [0.0.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* 0.0.
|
|
7
|
-
*
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
1
|
+
## [0.0.8](https://github.com/figorr/meteocatpy/compare/v0.0.7...v0.0.8) (2024-12-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 0.0.8 ([ae21e62](https://github.com/figorr/meteocatpy/commit/ae21e62c88b1ea20b94d5feb6eb8f5dfa07de509))
|
|
7
|
+
* fix json data ([91df89c](https://github.com/figorr/meteocatpy/commit/91df89c9746588e20a2073770313de20fa8dd64b))
|
|
8
|
+
|
|
9
|
+
## [0.0.7](https://github.com/figorr/meteocatpy/compare/v0.0.6...v0.0.7) (2024-12-07)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* 0.0.7 ([7908841](https://github.com/figorr/meteocatpy/commit/7908841eee0b00b563b6b6266f4a6b71bc503ef2))
|
|
15
|
+
* add github jobs ([d61a1e8](https://github.com/figorr/meteocatpy/commit/d61a1e846a5a34b505ca4520e68152bac21ace23))
|
|
16
|
+
* add semantic-release ([cbecdd0](https://github.com/figorr/meteocatpy/commit/cbecdd05eade74445d5458100c3c42f2eaff4506))
|
|
17
|
+
* CHANGELOG.md ([6cd6655](https://github.com/figorr/meteocatpy/commit/6cd665549663377ac4a73a20c6e5d4b8f6f859b9))
|
|
18
|
+
* delete meteocat_cache ([05371e8](https://github.com/figorr/meteocatpy/commit/05371e8aa53365d5bbc027d1658e154957e225fe))
|
|
19
|
+
* fix Content-Type : application.json for headers ([a79bb1c](https://github.com/figorr/meteocatpy/commit/a79bb1ced0a1f2def294b5964840ea938c469d57))
|
|
20
|
+
* fix data recovery data ([fc93719](https://github.com/figorr/meteocatpy/commit/fc93719d7d601810771bd89dcd8715686843f836))
|
|
21
|
+
* fix gitlab jobs ([7ee5b57](https://github.com/figorr/meteocatpy/commit/7ee5b5714e27b3f9031d5b9b81fe100e1064f0da))
|
|
22
|
+
* ignore node_modules ([8b7f87c](https://github.com/figorr/meteocatpy/commit/8b7f87c5bf6b08211925824fd02dd0fdbbfced9b))
|
|
23
|
+
* ignore pytest_cache ([99e99ba](https://github.com/figorr/meteocatpy/commit/99e99baf9a79529e63a0db47c76c7b150432f566))
|
|
24
|
+
* new repo file structure ([bd7e438](https://github.com/figorr/meteocatpy/commit/bd7e438040255ddbcc375fd67469704a83bf5dfe))
|
|
25
|
+
|
|
26
|
+
## v0.0.1 (2024-11-27)
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
- Version 0.0.3
|
|
31
|
+
([`3be4659`](https://github.com/figorr/meteocatpy/commit/3be4659a5df47b942f3d24594dc1140eecb65388))
|
|
32
|
+
|
|
33
|
+
- Version 0.0.3
|
|
34
|
+
([`987d7c8`](https://github.com/figorr/meteocatpy/commit/987d7c89f770f11aa37267815b799dd90d6230be))
|
|
35
|
+
|
|
36
|
+
- Fix version 0.0.3
|
|
37
|
+
([`6caaa46`](https://github.com/figorr/meteocatpy/commit/6caaa460dbee29f10a8566e0925ceddb94e4167e))
|
|
38
|
+
|
|
39
|
+
- Version to 0.0.2
|
|
40
|
+
([`0d47a4c`](https://github.com/figorr/meteocatpy/commit/0d47a4c1d8f64d0f6b32a79b909cda79ef236825))
|
|
41
|
+
|
|
42
|
+
- 0.0.1
|
|
43
|
+
([`a840913`](https://github.com/figorr/meteocatpy/commit/a840913c7cab075bf7b242ecbf0c93c0471f27f1))
|
|
44
|
+
|
|
45
|
+
- Fix version to 0.0.2
|
|
46
|
+
([`9c1b294`](https://github.com/figorr/meteocatpy/commit/9c1b294faa060988ecf41fbebcb01345ec940dce))
|
|
47
|
+
|
|
48
|
+
- 0.0.1
|
|
49
|
+
([`304baee`](https://github.com/figorr/meteocatpy/commit/304baeef7d988b3d38a39a2064230ccf3e34e5b5))
|
|
50
|
+
|
|
51
|
+
- Version 0.0.2
|
|
52
|
+
([`94fe6d1`](https://github.com/figorr/meteocatpy/commit/94fe6d1c6637c69d38eaec6b86463e260d1faf7f))
|
|
53
|
+
|
|
54
|
+
- Python 3.12
|
|
55
|
+
([`3b41f89`](https://github.com/figorr/meteocatpy/commit/3b41f895150a335f9cce7df3932d162bd8a6ed2e))
|
|
56
|
+
|
|
57
|
+
- 0.0.1
|
|
58
|
+
([`21b136e`](https://github.com/figorr/meteocatpy/commit/21b136e53b20484ca451b8ae7ea346723e343cd0))
|
|
59
|
+
|
|
60
|
+
- New repo file structure
|
|
61
|
+
([`d4369e5`](https://github.com/figorr/meteocatpy/commit/d4369e5e3048fee4fb7edf445814f4e765178d4d))
|
|
62
|
+
|
|
63
|
+
- Set town_id as codi_municipi and variable_id as codi_variable
|
|
64
|
+
([`8cfa246`](https://github.com/figorr/meteocatpy/commit/8cfa2465a949bfd46c60d7a4d824bd41eb5af507))
|
|
65
|
+
|
|
66
|
+
- Set town_id as codi
|
|
67
|
+
([`f4f1ee4`](https://github.com/figorr/meteocatpy/commit/f4f1ee403d16620e57c02e66771aa6b3483b6a89))
|
|
68
|
+
|
|
69
|
+
- Set station_id as codiEstacio
|
|
70
|
+
([`d8d75e4`](https://github.com/figorr/meteocatpy/commit/d8d75e484c3c191e7db70a20db9ce27e2b7d182c))
|
|
71
|
+
|
|
72
|
+
- Add new classes
|
|
73
|
+
([`aebd5c1`](https://github.com/figorr/meteocatpy/commit/aebd5c1011a9ba53ddcf239fa6f6ab2c9fc052a4))
|
|
74
|
+
|
|
75
|
+
- Fix status code UnknownAPIError
|
|
76
|
+
([`d611d42`](https://github.com/figorr/meteocatpy/commit/d611d42ddc12ff792d53894ba0c8007a1a9678ab))
|
|
77
|
+
|
|
78
|
+
- Fix status code for UnknownAPIError
|
|
79
|
+
([`3f4606b`](https://github.com/figorr/meteocatpy/commit/3f4606b5ec023254cb73efb2d5cf306974533898))
|
|
80
|
+
|
|
81
|
+
- Fix README
|
|
82
|
+
([`1c5553d`](https://github.com/figorr/meteocatpy/commit/1c5553d9b430563cb35f2d53fd51b4be00bf25aa))
|
|
83
|
+
|
|
84
|
+
- Add MeteocatSymbols
|
|
85
|
+
([`f30b115`](https://github.com/figorr/meteocatpy/commit/f30b1150d0bc78908287a1ef72827590a089f003))
|
|
86
|
+
|
|
87
|
+
- Fix tests
|
|
88
|
+
([`93cdcfd`](https://github.com/figorr/meteocatpy/commit/93cdcfd753d4ab7770ae85ad7c4e035802b8e9d2))
|
|
89
|
+
|
|
90
|
+
- Set symbol categories
|
|
91
|
+
([`88a5016`](https://github.com/figorr/meteocatpy/commit/88a5016935d6103183672a79bf0423e0893cefa1))
|
|
92
|
+
|
|
93
|
+
- Include new classes
|
|
94
|
+
([`f4ce82b`](https://github.com/figorr/meteocatpy/commit/f4ce82bffef80a884e02962548d6f5da7466e3b1))
|
|
95
|
+
|
|
96
|
+
- Improved error handling
|
|
97
|
+
([`03699b7`](https://github.com/figorr/meteocatpy/commit/03699b74791db3bb695d9613a215aee3da6a9929))
|
|
98
|
+
|
|
99
|
+
- Improved error handling
|
|
100
|
+
([`786005a`](https://github.com/figorr/meteocatpy/commit/786005a43435cb2217575dd1e528ff4f5a403e35))
|
|
101
|
+
|
|
102
|
+
- Improved error handling
|
|
103
|
+
([`295b356`](https://github.com/figorr/meteocatpy/commit/295b3560864e4420008aa80cbc01c96e1fbb67f8))
|
|
104
|
+
|
|
105
|
+
- Delete test files
|
|
106
|
+
([`33f3751`](https://github.com/figorr/meteocatpy/commit/33f3751e645bda30a70475efe5404f6f4ad0f96f))
|
|
107
|
+
|
|
108
|
+
- Fix integration_test
|
|
109
|
+
([`b7e8024`](https://github.com/figorr/meteocatpy/commit/b7e8024760401537d9ad28e026d4948383d9db3e))
|
|
110
|
+
|
|
111
|
+
- Add predictions resource url
|
|
112
|
+
([`d88e457`](https://github.com/figorr/meteocatpy/commit/d88e45777671c5726859c4b817a5ea02a7462ae4))
|
|
113
|
+
|
|
114
|
+
- Add predictions to client
|
|
115
|
+
([`e292acb`](https://github.com/figorr/meteocatpy/commit/e292acb3aa68415f3dd06d8ed2030fe2b18b9cb4))
|
|
116
|
+
|
|
117
|
+
- Fix base_url
|
|
118
|
+
([`3850642`](https://github.com/figorr/meteocatpy/commit/3850642390eb85962e0ac2d13d6b72effd985f53))
|
|
119
|
+
|
|
120
|
+
- Add new dependencies
|
|
121
|
+
([`dd7ff23`](https://github.com/figorr/meteocatpy/commit/dd7ff23fc7131187dd2c82cd57c2e6bcabfcea42))
|
|
122
|
+
|
|
123
|
+
- Readme
|
|
124
|
+
([`cb7cc7f`](https://github.com/figorr/meteocatpy/commit/cb7cc7fa33a388dde7e13563bc060d8a8a7265cf))
|
|
125
|
+
|
|
126
|
+
- Readme
|
|
127
|
+
([`21d88e7`](https://github.com/figorr/meteocatpy/commit/21d88e77ea206905161f09223f2d6f265958e98d))
|
|
128
|
+
|
|
129
|
+
- Add test_client
|
|
130
|
+
([`d878f74`](https://github.com/figorr/meteocatpy/commit/d878f7403716254b49203dc8f4589177bcbabc56))
|
|
131
|
+
|
|
132
|
+
- Fix _secrets
|
|
133
|
+
([`3adf076`](https://github.com/figorr/meteocatpy/commit/3adf076060718b0445ab9ff606e396ce2974433a))
|
|
134
|
+
|
|
135
|
+
- Fix const.py
|
|
136
|
+
([`c268acc`](https://github.com/figorr/meteocatpy/commit/c268acc417d8e8a550d2d74636e35e4268802dc6))
|
|
137
|
+
|
|
138
|
+
- Fix description
|
|
139
|
+
([`7afeb64`](https://github.com/figorr/meteocatpy/commit/7afeb643c5c8d906f4a497a9d177d264d25506dd))
|
|
140
|
+
|
|
141
|
+
- Fix interface.py
|
|
142
|
+
([`6dbc4c0`](https://github.com/figorr/meteocatpy/commit/6dbc4c0a1d644e58cb8c9b69b5ff812759ab25c0))
|
|
143
|
+
|
|
144
|
+
- Add filetree
|
|
145
|
+
([`1d1fad8`](https://github.com/figorr/meteocatpy/commit/1d1fad8ee1a50757396b6fd8ba8f8c77b243e1dd))
|