Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
YaphetKG committed Jan 3, 2024
1 parent 5658b38 commit 0677a77
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 22 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
# A container for the core semantic-search capability.
#
######################################################
FROM python:3.12.0-alpine3.18
FROM python:3.12.0-slim

# Install required packages
RUN apt-get update && \
apt-get install -y curl make vim && \
apt-get install -y g++ make && \
rm -rf /var/cache/apt/*

# Create a non-root user.
Expand Down
29 changes: 14 additions & 15 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
aiohttp
asyncio
fastapi==0.95.0
uvicorn==0.23.2
fastapi
uvicorn
elasticsearch[async]==8.5.2
gunicorn
itsdangerous
Jinja2
jsonschema
MarkupSafe
ormar==0.12.1
mistune==2.0.3
pluggy==1.0.0
pyrsistent==0.17.3
ormar
mistune
pluggy
pyrsistent
pytest
pytz==2021.1
PyYAML==6.0
requests==2.31.0
# old redis==4.4.2
redis==4.5.4
requests-cache==0.9.8
six==1.16.0
pytz
PyYAML
requests
redis
requests-cache
six

# Click for command line arguments
# We use Click 7.0 because that's what one of the pinned packages above use.
click
httpx>=0.24.1
httpx
bmt==1.1.0
urllib3>=1.26.17
urllib3
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ classifiers =
package_dir =
= src
packages = find:
python_requires = >=3.10
python_requires = >=3.12
include_package_data = true
install_requires =
elasticsearch==8.5.2
pluggy
requests
requests_cache==0.9.8
redis==4.5.4
requests_cache
redis

[options.entry_points]
console_scripts =
dug = dug.cli:main

[options.extras_require]
rest =
fastapi==0.95.0
uvicorn==0.23.2
fastapi
uvicorn
gunicorn
jsonschema

Expand Down

0 comments on commit 0677a77

Please sign in to comment.