Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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: |
Expand Down
10 changes: 3 additions & 7 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand All @@ -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"
Expand Down
Loading