Skip to content

Commit 873e4b9

Browse files
committed
v0.3.1
1 parent 1207a8b commit 873e4b9

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/publish-pypi.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
name: Publish Python distributions to PyPI
22

33
on:
4-
release:
5-
types: [published]
4+
push:
5+
branches:
6+
- main # Cambiado de master a main
7+
workflow_dispatch: # Esto permite lanzarlo a mano desde el botón
68

79
jobs:
810
build-n-publish:
911
name: Build and publish Python distributions to PyPI
1012
runs-on: ubuntu-latest
1113
permissions:
12-
# Esta sección es crucial para la autenticación OIDC (Trusted Publishing)
1314
id-token: write
1415
contents: read
1516

@@ -31,5 +32,3 @@ jobs:
3132

3233
- name: Publish package distributions to PyPI
3334
uses: pypa/gh-action-pypi-publish@release/v1
34-
# Con OIDC configurado en PyPI, no necesitas secretos de API Token aquí
35-

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyvpp"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Python package to download phenological data from Wekeo (HR-VPP datasets from Sentinel 2)"
55
authors = ["Diego García Díaz <digd.geografo@gmail.com>", "Ricardo Díaz-Delgado <rdiaz@ebd.csic.es>"]
66
maintainers = ["Diego García Díaz <digd.geografo@gmail.com>"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='pyvpp',
16-
version='0.3.0',
16+
version='0.3.1',
1717
description='Python package to download phenological data from Wekeo (HR-VPP datasets from Sentinel 2)',
1818
long_description=long_description,
1919
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)