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
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15.0-rc.1"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -21,8 +21,8 @@
docker pull $IMAGE
- name: Install dependencies
run: |
python -m pip install --upgrade pip

Check warning on line 24 in .github/workflows/unit-tests.yaml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=gchq_ConcourseTools&issues=AaAPT2pe63KyUSPFP5Mn&open=AaAPT2pe63KyUSPFP5Mn&pullRequest=46
python -m pip install -r requirements-tests.txt --no-deps

Check warning on line 25 in .github/workflows/unit-tests.yaml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=gchq_ConcourseTools&issues=AaAPT2pe63KyUSPFP5Mo&open=AaAPT2pe63KyUSPFP5Mo&pullRequest=46
- name: Run tests
run: |
python -W error -m unittest --verbose
2 changes: 2 additions & 0 deletions docs/source/changelog/development.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
Development
===========

* Added Python 3.15 support
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Topic :: Software Development",
"Typing :: Typed",
]
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sonar.projectDescription="Static analysis for the Concourse Tools Python library
sonar.sources=concoursetools
sonar.tests=tests

sonar.python.version=3.10,3.11,3.12,3.13,3.14
sonar.python.version=3.10,3.11,3.12,3.13,3.14,3.15

sonar.coverage.exclusions=docs/**/*,tests/**/*,coverage.xml,concoursetools/colour.py,concoursetools/typing.py,**/__init__.py,**/__main__.py
sonar.python.coverage.reportPaths=coverage.xml
Expand Down