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
4 changes: 2 additions & 2 deletions .github/workflows/flake8-and-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ include csbschema/data/XYZ-CSB-schema-3_0_0-2023-08.json
include csbschema/data/CSB-schema-3_0_0-2023-03.json
include csbschema/data/XYZ-CSB-schema-3_0_0-2023-03.json
include csbschema/data/CSB-schema-3_1_0-2023-03.json
include csbschema/data/CSB-schema-3_2_0-BETA.json
6 changes: 1 addition & 5 deletions csbschema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from csbschema import validators


__version__ = '1.1.2'
__version__ = '1.2.0.dev1'

# Current versions
B12_VERSION_3_1_0_2024_04 = '3.1.0-2024-04'
Expand All @@ -17,8 +17,6 @@
XYZ_B12_VERSION_3_1_0_2023_08 = 'XYZ-3.1.0-2023-08'
B12_VERSION_3_1_0_2023_03 = '3.1.0-2023-03'
B12_VERSION_3_1_0_2023_08 = '3.1.0-2023-08'
# Development versions
B12_VERSION_3_2_0_BETA = '3.2.0-BETA'

DEFAULT_VALIDATOR_VERSION = B12_VERSION_3_1_0_2024_04
VALIDATORS = {
Expand All @@ -33,8 +31,6 @@
XYZ_B12_VERSION_3_1_0_2023_08: validators.validate_b12_xyz_3_1_0_2023_08,
B12_VERSION_3_1_0_2023_03: validators.validate_b12_3_1_0_2023_03,
B12_VERSION_3_1_0_2023_08: validators.validate_b12_3_1_0_2023_08,
# Development versions
B12_VERSION_3_2_0_BETA: validators.validate_b12_3_2_0_BETA
}


Expand Down
Loading