Skip to content

Commit e7132fb

Browse files
authored
Merge pull request #2921 from bagerard/bump_jinja
Bump jinja
2 parents 45d4a63 + eefd46f commit e7132fb

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

.github/workflows/github-actions.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ env:
2727
PYMONGO_4_17: "4.17.0"
2828

2929
MAIN_PYTHON_VERSION: "3.14"
30+
MAIN_MONGODB_VERSION: $MONGODB_8_0
31+
MAIN_PYMONGO_VERSION: $PYMONGO_4_17
3032

3133
jobs:
3234
linting:
@@ -88,7 +90,12 @@ jobs:
8890
env:
8991
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9092
COVERALLS_SERVICE_NAME: github-actions
91-
if: ${{ matrix.python-version == env.MAIN_PYTHON_VERSION }}
93+
if: >-
94+
${{
95+
matrix.python-version == env.MAIN_PYTHON_VERSION &&
96+
matrix.MONGODB == env.MAIN_MONGODB_VERSION &&
97+
matrix.PYMONGO == env.MAIN_PYMONGO_VERSION
98+
}}
9299
run: coveralls
93100

94101
build_doc_dryrun:

docs/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Development
99
- (Fill this out as you fix issues and develop your features).
1010

1111
Changes in 1.0.0
12-
===========
12+
================
1313
- Add support for transaction through run_in_transaction (kudos to juannyG for this) #2569
1414

1515
Some considerations:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
# The name of an image file (within the static path) to use as favicon of the
120120
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
121121
# pixels large.
122-
html_favicon = "favicon.ico"
122+
html_favicon = ""
123123

124124
# Add any paths that contain custom static files (such as style sheets) here,
125125
# relative to this directory. They are copied after the builtin static files,

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ Sphinx==7.4.7
22
sphinx-rtd-theme==2.1.0rc2
33
readthedocs-sphinx-ext==2.2.5
44
docutils==0.20.1
5-
Jinja2==3.1.4
5+
Jinja2==3.1.6

0 commit comments

Comments
 (0)