Ver a proveniência

Merge remote-tracking branch 'origin/main' into features

pull/75/head
Jérôme Deuchnord há 2 meses
ascendente
cometimento
c0de2d6ba2
5 ficheiros alterados com 23 adições e 11 eliminações
  1. +3
    -3
      .github/workflows/prchecks.yml
  2. +2
    -2
      .github/workflows/release.yml
  3. +5
    -4
      .github/workflows/tests.yml
  4. +10
    -0
      CHANGELOG.md
  5. +3
    -2
      pyproject.toml

+ 3
- 3
.github/workflows/prchecks.yml Ver ficheiro

@@ -12,7 +12,7 @@ jobs:
fail-fast: false

steps:
- uses: amannn/action-semantic-pull-request@v5
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

@@ -23,8 +23,8 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: 3.x
- uses: psf/black@stable

+ 2
- 2
.github/workflows/release.yml Ver ficheiro

@@ -10,9 +10,9 @@ jobs:
name: Build and release to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Setup environment


+ 5
- 4
.github/workflows/tests.yml Ver ficheiro

@@ -24,12 +24,13 @@ jobs:
- '3.11'
- '3.12'
- '3.13'
- '3.14'

name: Python ${{ matrix.python_version }} (${{ matrix.os }})
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python_version }}

@@ -61,9 +62,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Prepare Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.x"



+ 10
- 0
CHANGELOG.md Ver ficheiro

@@ -1,3 +1,13 @@
# [Version 1.0.12](https://github.com/Kosmorro/lib/compare/v1.0.12...v1.0.13) (2025-11-09)


### Bug Fixes

* add compatibility with the last version of NumPy ([#79](https://github.com/Kosmorro/lib/issues/79)) ([65075b1](https://github.com/Kosmorro/lib/commit/65075b1c312c1de8fbcf33552f95d7be5033ee9d))
* add support for Python 3.14 ([af440e1](https://github.com/Kosmorro/lib/commit/af440e1e120397ac8658a4da9e968786ac064966))



# [Version 1.0.12](https://github.com/Kosmorro/lib/compare/v1.0.11...v) (2025-03-16)

### Bug Fixes


+ 3
- 2
pyproject.toml Ver ficheiro

@@ -1,6 +1,6 @@
[tool.poetry]
name = "kosmorrolib"
version = "1.0.12"
version = "1.0.13"
authors = ["Jérôme Deuchnord <jerome@deuchnord.fr>"]
homepage = "https://kosmorro.space/lib"
repository = "https://github.com/Kosmorro/lib"
@@ -24,7 +24,8 @@ skyfield = "^1.49"
numpy = [
{ version = "<1.25", python = "3.8.*" },
{ version = "<2.1", python = "3.9.*" },
{ version = "^2.1", python = "^3.10" },
{ version = "<2.3", python = "3.10.*" },
{ version = "^2.3", python = ">=3.11" },
]
skyfield-data = "*"
python-dateutil = "^2.8"


Carregando…
Cancelar
Guardar