Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python 3.10.* #441

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', 'pypy-3.9']
python-version: ['3.10', 'pypy-3.10']
name: Test Python ${{ matrix.python-version }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN sudo apt-get update \

RUN brew install go-task/tap/go-task

ARG PYTHON_VERSION=pypy3.9-7.3.10
ARG PYTHON_VERSION=pypy3.12-7.3.12
RUN cd /home/gitpod/.pyenv/plugins/python-build/../.. && git pull && cd -
RUN pyenv install $PYTHON_VERSION
RUN pyenv global $PYTHON_VERSION
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM pypy:3.9-7.3.10
FROM pypy:3.12-7.3.12

RUN pip install poetry

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ The test use [pymongo_inmemory](https://github.com/kaizendorks/pymongo_inmemory)
Depending on your OS it might be necessary to configure it in order to get the correct version
of MongoDB. E.g. for Ubuntu add the following environment variables:

To fix error: `pymongo.errors.ServerSelectionTimeoutError: 127.0.0.1:27017: [Errno 111] Connection refused, ...` when
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line length

running tests install mongodb locally. See https://github.com/kaizendorks/pymongo_inmemory/issues/63
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bare URL used

```dotenv
PYMONGOIM__MONGO_VERSION=4.4
PYMONGOIM__OPERATING_SYSTEM=ubuntu
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = ""
authors = []

[tool.poetry.dependencies]
python = "3.9.*"
python = "3.10.*"
falcon = "^3.0.1"
falcon-auth = "*"
pymongo = "*"
Expand Down