diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index 2cfeb65..b6f5bda 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -13,7 +13,7 @@ jobs: name: Code Style steps: - uses: actions/checkout@v3 - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v4 with: python-version: 3.9 - uses: psf/black@20.8b1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5770dd7..bf0b549 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: '3.x' - name: Setup environment diff --git a/.github/workflows/semantic-pr.yml b/.github/workflows/semantic-pr.yml index cc51e5d..06fecc4 100644 --- a/.github/workflows/semantic-pr.yml +++ b/.github/workflows/semantic-pr.yml @@ -12,6 +12,6 @@ jobs: name: Validate PR title runs-on: ubuntu-latest steps: - - uses: amannn/action-semantic-pull-request@v4 + - uses: amannn/action-semantic-pull-request@v5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 135ced1..5c518ef 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,16 +18,16 @@ jobs: - macos-11.0 - windows-latest python_version: - - '3.7' - '3.8' - '3.9' - '3.10' + - '3.11' name: Doc tests (Python ${{ matrix.python_version }} on ${{ matrix.os }}) steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python_version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python_version }} architecture: x64 @@ -62,7 +62,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Prepare Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: "3.x" diff --git a/CHANGELOG.md b/CHANGELOG.md index f577b2f..b6d1a0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [Version 1.0.7](https://github.com/Kosmorro/lib/compare/v1.0.6...v1.0.7) (2022-11-11) + + +### Build System + +* add support for Python 3.11 ([#58](https://github.com/Kosmorro/lib/issues/58)) ([807be7d](https://github.com/Kosmorro/lib/commit/807be7def324c1accdad6dc35738624589eb7b06)) + + +### BREAKING CHANGES + +* Python 3.7 is not supported anymore. + + + # [Version 1.0.6](https://github.com/Kosmorro/lib/compare/v1.0.5...v1.0.6) (2022-03-19) diff --git a/Makefile b/Makefile index 7689c87..edc1c6a 100644 --- a/Makefile +++ b/Makefile @@ -16,4 +16,3 @@ doctests: changelog: conventional-changelog -p angular -i CHANGELOG.md -s @echo -e "\e[32m✔\e[33m Changelog generated. Don't forget to update the version number before committing.\e[0m" - @echo -e " When everything is good, finish the release with 'make tag'." diff --git a/README.md b/README.md index b74141e..b9386d4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Kosmorrolib - a library to compute your ephemerides! +# ![Kosmorrolib](https://raw.githubusercontent.com/Kosmorro/logos/main/kosmorrolib/kosmorrolib-artwork.jpg) [![Coverage Status](https://coveralls.io/repos/github/Kosmorro/lib/badge.svg?branch=main)](https://coveralls.io/github/Kosmorro/lib?branch=main) [![Version on PyPI](https://img.shields.io/pypi/v/kosmorrolib)](https://pypi.org/project/kosmorrolib) [![IRC: #kosmorro on Libera.Chat](https://img.shields.io/badge/Libera.Chat-%23kosmorro-blueviolet)](https://web.libera.chat/?nick=Astronaut?#kosmorro) diff --git a/kosmorrolib/__version__.py b/kosmorrolib/__version__.py index 2d944fd..b6495dc 100644 --- a/kosmorrolib/__version__.py +++ b/kosmorrolib/__version__.py @@ -35,7 +35,7 @@ alert_deprecation( __title__ = "kosmorrolib" __description__ = "A library to compute your ephemerides" __url__ = "http://kosmorro.space/lib" -__version__ = "1.0.6" +__version__ = "1.0.7" __author__ = "Jérôme Deuchnord" __author_email__ = "jerome@deuchnord.fr" __license__ = "AGPL-v3" diff --git a/kosmorrolib/ephemerides.py b/kosmorrolib/ephemerides.py index f12943b..ff211bb 100644 --- a/kosmorrolib/ephemerides.py +++ b/kosmorrolib/ephemerides.py @@ -139,7 +139,7 @@ def get_ephemerides( >>> get_ephemerides(Position(36.6794, 4.8555), date(2022, 7, 7)) [>, >, - >, + >, >, >, >, @@ -153,7 +153,7 @@ def get_ephemerides( >>> get_ephemerides(Position(36.6794, 4.8555), date(2022, 7, 7), timezone=2) [>, >, - >, + >, >, >, >, diff --git a/pyproject.toml b/pyproject.toml index 1d90d66..1f592e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kosmorrolib" -version = "1.0.6" +version = "1.0.7" authors = ["Jérôme Deuchnord "] homepage = "https://kosmorro.space/lib" repository = "https://github.com/Kosmorro/lib" @@ -19,7 +19,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = ">=3.7,<3.11" +python = ">=3.8,<3.12" skyfield = "^1.21" skyfield-data = ">=3,<5" python-dateutil = "^2.8"