Explorar el Código

build(python): fix support for Python 3.13 (#74)

tags/v1.0.12
Deuchnord hace 8 meses
committed by GitHub
padre
commit
240d567940
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: B5690EEEBB952194
Se han modificado 2 ficheros con 3 adiciones y 1 borrados
  1. +1
    -0
      .github/workflows/tests.yml
  2. +2
    -1
      pyproject.toml

+ 1
- 0
.github/workflows/tests.yml Ver fichero

@@ -23,6 +23,7 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'

name: Python ${{ matrix.python_version }} (${{ matrix.os }})
steps:


+ 2
- 1
pyproject.toml Ver fichero

@@ -23,7 +23,8 @@ python = "^3.8"
skyfield = "^1.49"
numpy = [
{ version = "<1.25", python = "3.8.*" },
{ version = "^2.0", python = ">=3.9,<3.13" },
{ version = "<2.1", python = "3.9.*" },
{ version = "^2.1", python = "^3.10" },
]
skyfield-data = "*"
python-dateutil = "^2.8"


Cargando…
Cancelar
Guardar