Skip to content

Commit

Permalink
update python and dependencies (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
zganger authored Sep 5, 2024
1 parent c1d6255 commit 0ff43bb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def get_config_from_env(env: str) -> Config:
variable.
Args:
env: (str) A string. Usually this is from `app.env` inside of the
env: (str) A string. Usually this is from `app.env` in the
`create_app` function, which in turn is set by the environment
variable `FLASK_ENV`.
Returns:
Expand Down
2 changes: 1 addition & 1 deletion requirements/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ SHELL ["bash", "-lc"]
RUN curl https://pyenv.run | bash && \
echo 'export PATH="$HOME/.pyenv/shims:$HOME/.pyenv/bin:$PATH"' >> ~/.bashrc

ENV PYTHON_VERSION=3.12.4
ENV PYTHON_VERSION=3.12.5
RUN pyenv install ${PYTHON_VERSION} && pyenv global ${PYTHON_VERSION}
RUN pip install -U pip-tools

Expand Down
4 changes: 2 additions & 2 deletions requirements/dev_unix.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ anyio==4.3.0
# via
# httpx
# jupyter-server
appnope==0.1.4
# via ipykernel
argon2-cffi==23.1.0
# via jupyter-server
argon2-cffi-bindings==21.2.0
Expand Down Expand Up @@ -144,8 +146,6 @@ flask-wtf==1.2.1
# flask-user
fqdn==1.5.1
# via jsonschema
greenlet==3.0.3
# via sqlalchemy
gunicorn==21.2.0
# via -r requirements/_core.in
h11==0.14.0
Expand Down
4 changes: 2 additions & 2 deletions requirements/dev_windows.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ anyio==4.3.0
# via
# httpx
# jupyter-server
appnope==0.1.4
# via ipykernel
argon2-cffi==23.1.0
# via jupyter-server
argon2-cffi-bindings==21.2.0
Expand Down Expand Up @@ -144,8 +146,6 @@ flask-wtf==1.2.1
# flask-user
fqdn==1.5.1
# via jsonschema
greenlet==3.0.3
# via sqlalchemy
gunicorn==21.2.0
# via -r requirements/_core.in
h11==0.14.0
Expand Down
4 changes: 2 additions & 2 deletions requirements/prod.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ anyio==4.3.0
# via
# httpx
# jupyter-server
appnope==0.1.4
# via ipykernel
argon2-cffi==23.1.0
# via jupyter-server
argon2-cffi-bindings==21.2.0
Expand Down Expand Up @@ -144,8 +146,6 @@ flask-wtf==1.2.1
# flask-user
fqdn==1.5.1
# via jsonschema
greenlet==3.0.3
# via sqlalchemy
gunicorn==21.2.0
# via -r requirements/_core.in
h11==0.14.0
Expand Down
2 changes: 1 addition & 1 deletion runtime.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python-3.12.4
python-3.12.5

0 comments on commit 0ff43bb

Please sign in to comment.