diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index c8df0ae..c77e514 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -35,6 +35,15 @@ jobs: - name: "Linux Python 3.9" os: "ubuntu-24.04" python-version: "3.9" + - name: "Linux Python 3.10" + os: "ubuntu-24.04" + python-version: "3.10" + - name: "Linux Python 3.11" + os: "ubuntu-24.04" + python-version: "3.11" + - name: "Linux Python 3.12" + os: "ubuntu-24.04" + python-version: "3.12" - name: "Linux Python 3.13" os: "ubuntu-24.04" python-version: "3.13" diff --git a/python/CHANGES.md b/python/CHANGES.md index 103c932..a1ba62b 100644 --- a/python/CHANGES.md +++ b/python/CHANGES.md @@ -1,6 +1,6 @@ # insta-science -## 0.1.0.dev0 +## 0.1.0 -Prime release channel (will be deleted). +Initial release. diff --git a/python/insta_science/__init__.py b/python/insta_science/__init__.py index f586716..d3e0961 100644 --- a/python/insta_science/__init__.py +++ b/python/insta_science/__init__.py @@ -1,4 +1,4 @@ # Copyright 2024 Science project contributors. # Licensed under the Apache License, Version 2.0 (see LICENSE). -__version__ = "0.1.0.dev0" +__version__ = "0.1.0"