Skip to content

Commit 3188667

Browse files
committed
Update version to 1.0.2, fix SQLAlchemy-utils pinning, resolve tox issues, and clean up test output
1 parent 15ed0c6 commit 3188667

File tree

6 files changed

+859
-375
lines changed

6 files changed

+859
-375
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version: ["3.9", "3.14"]
15-
15+
1616
steps:
1717
- uses: actions/checkout@v4
1818

@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
matrix:
4040
python-version: ["3.9", "3.14"]
41-
41+
4242
steps:
4343
- uses: actions/checkout@v4
4444

@@ -57,7 +57,7 @@ jobs:
5757
run: uv pip install -e ".[dev,lint,test]"
5858

5959
- name: Run type checking
60-
run: uv run make ty
60+
run: make ty
6161

6262
test:
6363
runs-on: ubuntu-latest
@@ -104,4 +104,4 @@ jobs:
104104
DB_TEST_USER: postgres
105105
DB_TEST_PASSWORD: postgres
106106
DB_TEST_HOST: localhost
107-
DB_TEST_PORT: 5433
107+
DB_TEST_PORT: 5433

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changelog
22

3+
## [1.0.2]
4+
5+
- Fix issus with sqlalchemy-utils being pinned too strictly.
6+
- Fix tox issues.
7+
- Remove print statements from tests.
8+
39
## [1.0.0]
410

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sqlalchemy-diff"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
authors = [
55
{ name = "Fabrizio Romano", email = "[email protected]" },
66
{ name = "Mark McArdle", email = "[email protected]" },
@@ -32,7 +32,7 @@ maintainers = [
3232
keywords = ["sqlalchemy", "diff", "compare"]
3333
dependencies = [
3434
"sqlalchemy>=1.4,<3",
35-
"sqlalchemy-utils~=0.41.2",
35+
"sqlalchemy-utils>=0.40.0,!=0.42.0",
3636
]
3737

3838
[project.optional-dependencies]

tests/test_comparer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ class TestComparerV14(BaseTest):
152152
def test_compare(self, db_engine_one, db_engine_two, compare_result_v14, compare_errors_v14):
153153
comparer = Comparer(db_engine_one, db_engine_two)
154154
result = comparer.compare()
155-
print(result.errors)
156155
assert result.result == compare_result_v14
157156
assert result.errors == compare_errors_v14
158157

tox.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ description = "Run unit tests with Python {basepython} and sqlalchemy V1.4"
3838
skip_install = true
3939
deps = [
4040
"sqlalchemy~=1.4",
41-
"sqlalchemy-utils~=0.41.2",
42-
"pytest~=8.3",
43-
"pytest-cov~=6.0",
41+
"sqlalchemy-utils>=0.40.0,!=0.42.0",
42+
"pytest~=8.4.2",
43+
"pytest-cov~=7.0.0",
4444
"psycopg2-binary",
4545
]
4646
allowlist_externals = ["make"]

0 commit comments

Comments
 (0)