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
2 changes: 1 addition & 1 deletion 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 Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@ authors = [
]
description = "JSON Schema and validator for IHO B-12 Crowdsourced Bathymetry metadata and data"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
dependencies = [
'jsonschema[format]~=4.21.0',
'jsonschema[format]~=4.26.0',
]

[project.optional-dependencies]
test = [
"flake8",
"unittest-xml-reporting>=3.2.0",
"lxml>=4.6.5",
"pytest>=7.2.0",
"pytest-cov>=4.0.0",
"pytest-xdist>=3.0.2",
"unittest-xml-reporting>=4.0.0",
"lxml>=6.0.2",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-xdist>=3.8.0",
]

[project.urls]
Expand Down