Skip to content

Commit

Permalink
update versions, for conda test, install mongomock via pip
Browse files Browse the repository at this point in the history
 * after mongomock infrastructure upgrade, python3.8 is minimum.
   since this is only available via pip, install only this package
   via pip in the conda environment setup
  • Loading branch information
JunAishima committed Oct 8, 2024
1 parent 82b276e commit ad4fe9a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
dependencies: ["pip", "conda"]
fail-fast: false

Expand Down Expand Up @@ -53,7 +53,8 @@ jobs:
if: matrix.dependencies == 'conda'
run: |
set -vxeo pipefail
conda install -y -c conda-forge six mongoquery doct jsonschema mock mongomock pymongo pytest pyyaml requests tornado ujson
conda install -y -c conda-forge six mongoquery doct jsonschema mock pymongo pytest pyyaml requests tornado ujson
pip install mongomock
- name: Install the package
run: |
Expand Down

0 comments on commit ad4fe9a

Please sign in to comment.