Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ env:
PYMONGO_4_17: "4.17.0"

MAIN_PYTHON_VERSION: "3.14"
MAIN_MONGODB_VERSION: $MONGODB_8_0
MAIN_PYMONGO_VERSION: $PYMONGO_4_17

jobs:
linting:
Expand Down Expand Up @@ -88,7 +90,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github-actions
if: ${{ matrix.python-version == env.MAIN_PYTHON_VERSION }}
if: >-
${{
matrix.python-version == env.MAIN_PYTHON_VERSION &&
matrix.MONGODB == env.MAIN_MONGODB_VERSION &&
matrix.PYMONGO == env.MAIN_PYMONGO_VERSION
}}
run: coveralls

build_doc_dryrun:
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Development
- (Fill this out as you fix issues and develop your features).

Changes in 1.0.0
===========
================
- Add support for transaction through run_in_transaction (kudos to juannyG for this) #2569

Some considerations:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
html_favicon = "favicon.ico"
html_favicon = ""

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ Sphinx==7.4.7
sphinx-rtd-theme==2.1.0rc2
readthedocs-sphinx-ext==2.2.5
docutils==0.20.1
Jinja2==3.1.4
Jinja2==3.1.6