Skip to content

Commit

Permalink
pin SQLalchemy to 1.4 series
Browse files Browse the repository at this point in the history
  • Loading branch information
Spindel committed Jan 30, 2023
1 parent 2a72328 commit 0c43afa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ caramel:mypy:
when: always
image: ${PYTHON_IMAGE}
before_script:
- pip3 install mypy "sqlalchemy[mypy]"
- python3 -m pip install mypy "sqlalchemy[mypy]<2"
script:
- mypy --install-types --non-interactive --config-file=setup.cfg caramel/ tests/

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

requires = [
"pyramid",
"SQLAlchemy >= 1.4",
"SQLAlchemy ~= 1.4.32",
"transaction",
"pyramid_tm",
"zope.sqlalchemy >= 1.3",
Expand All @@ -16,7 +16,7 @@

setup(
name="caramel",
version="1.9.2",
version="1.9.3",
python_requires=">=3.6",
description="caramel",
long_description="""
Expand Down

0 comments on commit 0c43afa

Please sign in to comment.