Skip to content

Commit 5d279f1

Browse files
committed
beta.3
1 parent f872d82 commit 5d279f1

File tree

7 files changed

+22
-14
lines changed

7 files changed

+22
-14
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
"cockroach:latest-v25.2",
4646
"cockroach:latest-v25.3",
4747
"cockroach:latest-v25.4",
48-
"cockroach-unstable:v26.1.0-beta.2"
48+
"cockroach-unstable:v26.1.0-beta.3"
4949
]
5050
db-alias: [
5151
"psycopg2",
@@ -54,7 +54,7 @@ jobs:
5454
]
5555
env:
5656
TOXENV: py310
57-
TOX_VERSION: 4.33.0
57+
TOX_VERSION: 4.34.1
5858
steps:
5959
- uses: actions/checkout@v4
6060
- uses: actions/setup-python@v5
@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ubuntu-latest
7878
env:
7979
TOXENV: py310
80-
TOX_VERSION: 4.33.0
80+
TOX_VERSION: 4.34.1
8181
steps:
8282
- uses: actions/checkout@v4
8383
- uses: actions/setup-python@v5

dev-requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# generated dev-requirements.txt), run make update-requirements,
55
# then make bootstrap.
66

7-
tox==4.33.0
7+
tox==4.34.1
88

99
# Twine is used in the release process to upload the package.
1010
twine

dev-requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ distlib==0.4.0
1818
# via virtualenv
1919
docutils==0.22.4
2020
# via readme-renderer
21-
filelock==3.20.2
21+
filelock==3.20.3
2222
# via
2323
# tox
2424
# virtualenv
@@ -30,7 +30,7 @@ importlib-metadata==8.7.1
3030
# via keyring
3131
jaraco-classes==3.4.0
3232
# via keyring
33-
jaraco-context==6.0.2
33+
jaraco-context==6.1.0
3434
# via keyring
3535
jaraco-functools==4.4.0
3636
# via keyring
@@ -84,11 +84,11 @@ rich==14.2.0
8484
# via twine
8585
secretstorage==3.5.0
8686
# via keyring
87-
tomli==2.3.0
87+
tomli==2.4.0
8888
# via
8989
# pyproject-api
9090
# tox
91-
tox==4.33.0
91+
tox==4.34.1
9292
# via -r dev-requirements.in
9393
twine==6.2.0
9494
# via -r dev-requirements.in
@@ -101,7 +101,7 @@ urllib3==2.6.3
101101
# via
102102
# requests
103103
# twine
104-
virtualenv==20.36.0
104+
virtualenv==20.36.1
105105
# via tox
106106
zipp==3.23.0
107107
# via importlib-metadata

test-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
alembic==1.17.2
1+
alembic==1.18.1
22
# via -r test-requirements.in
33
async-timeout==5.0.1
44
# via asyncpg
@@ -36,7 +36,7 @@ sqlalchemy==2.0.45
3636
# via
3737
# -r test-requirements.in
3838
# alembic
39-
tomli==2.3.0
39+
tomli==2.4.0
4040
# via
4141
# alembic
4242
# pytest

test/test_run_transaction_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def barrier():
6666
# If this is the first iteration, wait for the other txn to also read.
6767
with cv:
6868
wait_count[0] -= 1
69-
cv.notifyAll()
69+
cv.notify_all()
7070
while wait_count[0] > 0:
7171
cv.wait()
7272

test/test_run_transaction_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def barrier():
5858
# If this is the first iteration, wait for the other txn to also read.
5959
with cv:
6060
wait_count[0] -= 1
61-
cv.notifyAll()
61+
cv.notify_all()
6262
while wait_count[0] > 0:
6363
cv.wait()
6464

test/test_suite_alembic.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
from alembic.testing.suite import * # noqa
2-
# from sqlalchemy.testing import skip
2+
from sqlalchemy.testing import skip
3+
from alembic.testing.suite import AutogenerateFKOptionsTest as _AutogenerateFKOptionsTest
34
from alembic.testing.suite import BackendAlterColumnTest as _BackendAlterColumnTest
45

56

7+
class AutogenerateFKOptionsTest(_AutogenerateFKOptionsTest):
8+
@skip("cockroachdb")
9+
def test_nochange_ondelete(self):
10+
# case sensitivity seems to have changed in 26.1_beta.3
11+
pass
12+
13+
614
class BackendAlterColumnTest(_BackendAlterColumnTest):
715
def test_modify_nullable_to_non(self):
816
if config.db.dialect._is_v253plus:

0 commit comments

Comments
 (0)