diff --git a/.github/workflows/codequality.yml b/.github/workflows/codequality.yml index f46e1797..96ec29f9 100644 --- a/.github/workflows/codequality.yml +++ b/.github/workflows/codequality.yml @@ -15,14 +15,11 @@ permissions: jobs: build: runs-on: ubuntu-latest - steps: - uses: actions/checkout@v4 - - name: Set up Python 3.10 - uses: actions/setup-python@v3 + - uses: actions/setup-python@v5 with: - python-version: "3.10" - + python-version: '3.12' - name: Install dependencies run: | sudo apt update diff --git a/pyproject.toml b/pyproject.toml index 4759a253..7d4b7490 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "biscuit-editor" -version = "2.99.97" +version = "2.99.98" description = "A lightweight, fast, and extensible code editor with a growing community" authors = ["Billy "] license = "MIT" diff --git a/src/biscuit/__init__.py b/src/biscuit/__init__.py index 7b04fe5e..c4f5c243 100644 --- a/src/biscuit/__init__.py +++ b/src/biscuit/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.99.97" +__version__ = "2.99.98" __version_info__ = tuple([int(num) for num in __version__.split(".")]) from .main import *