Skip to content
Open
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
10 changes: 9 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ strategy:
python.version: '3.10'
Python311:
python.version: '3.11'
Python312:
python.version: '3.12'
Python313:
python.version: '3.13'

steps:
- task: UsePythonVersion@0
Expand All @@ -23,6 +27,10 @@ steps:
python -m pip install --upgrade pip uv uv-dynamic-versioning keyring artifacts-keyring
displayName: 'Install package and tools'

- script: |
python -m pip install --no-deps .
displayName: 'Check package installation'

- script: |
uv sync
condition: always()
Expand All @@ -33,4 +41,4 @@ steps:

- script: |
uv run make test
displayName: 'Run regression tests'
displayName: 'Run regression tests'
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "pygt3x"
dynamic = ["version"]
description = "Python module for reading GT3X/AGDC file format data"
authors = [{ name = "Mark Fogle", email = "mark.fogle@theactigraph.com" }]
requires-python = ">3.9,<=3.13"
requires-python = ">3.9,<3.14"
readme = "README.md"
license = "GPL-3.0-or-later"
maintainers = [{ name = "Ali Neishabouri", email = "ali.neishabouri@theactigraph.com" }]
Expand Down Expand Up @@ -50,4 +50,4 @@ source = "uv-dynamic-versioning"
[tool.hatch.build.targets.sdist]
exclude = [
"/tests/resources"
]
]