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

Bump gevent #431

Merged
merged 2 commits into from
Oct 20, 2023
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Pull python base image
FROM python:3.7.4-slim
FROM python:3.10-slim

# install the requirements from the requirements.txt file via git
RUN apt-get update && apt-get -y install libpq-dev gcc && apt-get install git -y --no-install-recommends
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fyle-integrations-platform-connector==1.32.3
fyle-accounting-mappings==1.26.0
fyle-rest-auth==1.5.0
gunicorn==20.1.0
gevent==22.10.2
gevent==23.9.1
anishfyle marked this conversation as resolved.
Show resolved Hide resolved
idna==2.8
iniconfig==1.1.1
isodate==0.6.0
Expand Down Expand Up @@ -62,4 +62,3 @@ urllib3==1.26.11
wcwidth==0.1.8
wrapt==1.12.1
zeep==4.1.0
gevent==22.10.2
5 changes: 0 additions & 5 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,3 @@ def default_session_fixture(request):
return_value=None
)
patched_7.__enter__()

def unpatch():
patched_1.__exit__()

request.addfinalizer(unpatch)
Loading