| @@ -12,7 +12,7 @@ jobs: | |||||
| fail-fast: false | fail-fast: false | ||||
| steps: | steps: | ||||
| - uses: amannn/action-semantic-pull-request@v5 | |||||
| - uses: amannn/action-semantic-pull-request@v6 | |||||
| env: | env: | ||||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||||
| @@ -23,8 +23,8 @@ jobs: | |||||
| fail-fast: false | fail-fast: false | ||||
| steps: | steps: | ||||
| - uses: actions/checkout@v4 | |||||
| - uses: actions/setup-python@v5 | |||||
| - uses: actions/checkout@v5 | |||||
| - uses: actions/setup-python@v6 | |||||
| with: | with: | ||||
| python-version: 3.x | python-version: 3.x | ||||
| - uses: psf/black@stable | - uses: psf/black@stable | ||||
| @@ -10,9 +10,9 @@ jobs: | |||||
| name: Build and release to PyPI | name: Build and release to PyPI | ||||
| runs-on: ubuntu-latest | runs-on: ubuntu-latest | ||||
| steps: | steps: | ||||
| - uses: actions/checkout@v4 | |||||
| - uses: actions/checkout@v5 | |||||
| - name: Set up Python | - name: Set up Python | ||||
| uses: actions/setup-python@v5 | |||||
| uses: actions/setup-python@v6 | |||||
| with: | with: | ||||
| python-version: '3.x' | python-version: '3.x' | ||||
| - name: Setup environment | - name: Setup environment | ||||
| @@ -24,12 +24,13 @@ jobs: | |||||
| - '3.11' | - '3.11' | ||||
| - '3.12' | - '3.12' | ||||
| - '3.13' | - '3.13' | ||||
| - '3.14' | |||||
| name: Python ${{ matrix.python_version }} (${{ matrix.os }}) | name: Python ${{ matrix.python_version }} (${{ matrix.os }}) | ||||
| steps: | steps: | ||||
| - uses: actions/checkout@v4 | |||||
| - uses: actions/checkout@v5 | |||||
| - name: Set up Python ${{ matrix.python_version }} | - name: Set up Python ${{ matrix.python_version }} | ||||
| uses: actions/setup-python@v5 | |||||
| uses: actions/setup-python@v6 | |||||
| with: | with: | ||||
| python-version: ${{ matrix.python_version }} | python-version: ${{ matrix.python_version }} | ||||
| @@ -61,9 +62,9 @@ jobs: | |||||
| runs-on: ubuntu-latest | runs-on: ubuntu-latest | ||||
| steps: | steps: | ||||
| - uses: actions/checkout@v4 | |||||
| - uses: actions/checkout@v5 | |||||
| - name: Prepare Python | - name: Prepare Python | ||||
| uses: actions/setup-python@v5 | |||||
| uses: actions/setup-python@v6 | |||||
| with: | with: | ||||
| python-version: "3.x" | python-version: "3.x" | ||||
| @@ -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) | # [Version 1.0.12](https://github.com/Kosmorro/lib/compare/v1.0.11...v) (2025-03-16) | ||||
| ### Bug Fixes | ### Bug Fixes | ||||
| @@ -1,6 +1,6 @@ | |||||
| [tool.poetry] | [tool.poetry] | ||||
| name = "kosmorrolib" | name = "kosmorrolib" | ||||
| version = "1.0.12" | |||||
| version = "1.0.13" | |||||
| authors = ["Jérôme Deuchnord <jerome@deuchnord.fr>"] | authors = ["Jérôme Deuchnord <jerome@deuchnord.fr>"] | ||||
| homepage = "https://kosmorro.space/lib" | homepage = "https://kosmorro.space/lib" | ||||
| repository = "https://github.com/Kosmorro/lib" | repository = "https://github.com/Kosmorro/lib" | ||||
| @@ -24,7 +24,8 @@ skyfield = "^1.49" | |||||
| numpy = [ | numpy = [ | ||||
| { version = "<1.25", python = "3.8.*" }, | { version = "<1.25", python = "3.8.*" }, | ||||
| { version = "<2.1", python = "3.9.*" }, | { 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 = "*" | skyfield-data = "*" | ||||
| python-dateutil = "^2.8" | python-dateutil = "^2.8" | ||||