Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
2a5e1e4
Merge pull request #179 from casework/release-0.17.0
vulnmaster Jun 18, 2025
45f5414
Run pre-commit autoupdate
ajnelson-nist Jul 24, 2026
7682fdb
Update module reference
ajnelson-nist Jul 24, 2026
3675197
Update Python range to >= 3.10, per 3.9 EOL
ajnelson-nist Jul 24, 2026
e82be4c
Merge branches 'bump_python_floor', 'run_pre_commit_autoupdate' and '…
ajnelson-nist Jul 24, 2026
8b50464
Regenerate Make-managed files
ajnelson-nist Jul 24, 2026
c627642
Bump Action version
ajnelson-nist Jul 24, 2026
2de1adc
Bump Action version
ajnelson-nist Jul 24, 2026
fcf7cc3
Bump Action version
ajnelson-nist Jul 24, 2026
4a109ea
Bump Action version
ajnelson-nist Jul 24, 2026
241a831
Bump Python version
ajnelson-nist Jul 24, 2026
6bb9bbb
Build CASE 1.5.0 monolithic .ttl files
ajnelson-nist Jul 24, 2026
f383197
Bump CASE pointer to 1.5.0 release
ajnelson-nist Jul 24, 2026
0a016ed
Merge pull request #180 from casework/bump_action_versions
ajnelson-nist Jul 27, 2026
6e4f0fc
Merge pull request #181 from casework/bump_python_ceiling
ajnelson-nist Jul 27, 2026
c738372
Update inherited tests
ajnelson-nist Jul 27, 2026
cb98898
Regenerate Make-managed files
ajnelson-nist Jul 27, 2026
460ff5c
Remove trailing whitespace when reviewing SELECT clause
ajnelson-nist Jul 27, 2026
d7bb3b7
Remove debug flag in CI calls
ajnelson-nist Jul 27, 2026
0e361d0
Merge pull request #182 from casework/build_case_1.5.0
vulnmaster Aug 6, 2026
404410f
Merge pull request #183 from casework/BugFix-Issue-162
vulnmaster Aug 6, 2026
3800b69
Merge pull request #184 from casework/remove_debug_flag_in_ci_calls
vulnmaster Aug 6, 2026
e20a20c
Run pre-commit autoupdate
ajnelson-nist Sep 2, 2026
501c5a4
Bump versions
ajnelson-nist Sep 2, 2026
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
12 changes: 6 additions & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@ jobs:
strategy:
matrix:
python-version:
- '3.9'
- '3.13'
- '3.10'
- '3.14'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-java@v4
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '11'

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

# Upload the packages on all develop and main pipleines for test consumption
- name: Upload HTML Docs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: packages-${{ matrix.python-version }}
path: ./dist/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
strategy:
matrix:
python-version:
- '3.9'
- '3.13'
- '3.10'
- '3.14'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Review dependencies
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
repos:
- repo: https://github.com/psf/black
rev: 25.1.0
rev: 26.5.1
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 7.2.0
rev: 7.3.0
hooks:
- id: flake8
- repo: https://github.com/pycqa/isort
rev: 6.0.1
rev: 9.0.1
hooks:
- id: isort
name: isort (python)
2 changes: 1 addition & 1 deletion case_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
#
# We would appreciate acknowledgement if the software is used.

__version__ = "0.17.0"
__version__ = "0.18.0"
4 changes: 2 additions & 2 deletions case_utils/case_sparql_select/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
Should a more complex query be necessary, an outer, wrapping SELECT query would let this script continue to function.
"""

__version__ = "0.5.3"
__version__ = "0.5.4"

import argparse
import binascii
Expand Down Expand Up @@ -57,7 +57,7 @@ def query_text_to_variables(select_query_text: str) -> typing.List[str]:
select_query_text_lines = select_query_text.split("\n")
select_line = [
line for line in select_query_text_lines if line.startswith("SELECT ")
][0]
][0].strip()
variables = select_line.replace(" DISTINCT", "").replace("SELECT ", "").split(" ")
return variables

Expand Down
4 changes: 2 additions & 2 deletions case_utils/case_validate/validate_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#
# We would appreciate acknowledgement if the software is used.

__version__ = "0.3.0"
__version__ = "0.3.1"

import importlib
import logging
Expand All @@ -23,7 +23,7 @@

import rdflib

import case_utils
import case_utils.ontology
from case_utils.case_validate.validate_types import NonExistentCASEVersionError
from case_utils.ontology.version_info import CURRENT_CASE_VERSION

Expand Down
Loading