diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index f483aac..b5d024c 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -50,17 +50,14 @@ jobs: needs: [findChangedPythonFiles] if: ${{ needs.findChangedPythonFiles.outputs.isPythonFilesChanged == 'true' }} runs-on: ubuntu-latest - strategy: - matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 with: submodules: true - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python 3.13 uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: '3.13' - name: Install dependencies run: | python -m pip install --upgrade pip @@ -81,7 +78,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.13' - name: Install dependencies run: | python -m pip install --upgrade pip @@ -122,7 +119,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.13' - name: Check if GitHub release already exists id: release-check run: | diff --git a/python/pyproject.toml b/python/pyproject.toml index c36f5b2..8ce04da 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "links-notation" -version = "0.9.0" +version = "0.10.0" description = "Python implementation of the Lino protocol parser" readme = "README.md" license = {text = "Unlicense"} @@ -17,15 +17,11 @@ classifiers = [ "Intended Audience :: Developers", "License :: Public Domain", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing", ] -requires-python = ">=3.8" +requires-python = ">=3.13" [project.urls] Homepage = "https://github.com/link-foundation/links-notation"