Skip to content

Commit 87aa2b2

Browse files
committed
Bump version to 3.0.1.dev1 and update dependencies; fix README link and adjust import path
1 parent 700c6cf commit 87aa2b2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Open Data Contract Standard (Python)
22

3-
The pip module `open-data-contract-standard` to read and write YAML files using the [Open Data Contract Standard](https://datacontract.com). The pip module was extracted from the [Data Contract CLI](https://github.com/datacontract/datacontract-cli), which is its primary user.
3+
The pip module `open-data-contract-standard` to read and write YAML files using the [Open Data Contract Standard](https://github.com/bitol-io/open-data-contract-standard). The pip module was extracted from the [Data Contract CLI](https://github.com/datacontract/datacontract-cli), which is its primary user.
44

55
The version number of the pip module corresponds to the version of the Open Data Contract Standard it supports.
66

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "open-data-contract-standard"
3-
version = "3.0.1" # in sync with spec
3+
version = "3.0.1.dev1" # in sync with spec
44
description = "The Pydantic Model of the Open Data Contract Standard"
55
readme = "README.md"
66
authors = [
@@ -15,8 +15,8 @@ classifiers = [
1515
]
1616
requires-python = ">=3.10"
1717
dependencies = [
18-
"pydantic>=2.8.2,<2.11.0",
19-
"pyyaml~=6.0.1",
18+
"pydantic>=2.8.0",
19+
"pyyaml>=6.0.0",
2020
]
2121

2222
[project.optional-dependencies]

src/__init__.py

Whitespace-only changes.

src/open_data_contract_standard/test_model.py renamed to tests/test_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import yaml
22

3-
from .model import OpenDataContractStandard
3+
from open_data_contract_standard.model import OpenDataContractStandard
44

55

66
def test_roundtrip():

0 commit comments

Comments
 (0)