Skip to content

Commit

Permalink
Update project dependency versions
Browse files Browse the repository at this point in the history
Signed-off-by: hammadkhan373 <[email protected]>
  • Loading branch information
hammadkhan373 committed Aug 8, 2022
1 parent 651b0fe commit 185fc5d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from python:3.8-alpine
from python:3.9-alpine

ADD . /tmp/py-service-wrapper

Expand Down
2 changes: 1 addition & 1 deletion sample_project/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
name="test-project",
packages=find_packages(".", exclude=["*tests*"]),
version="0.0.1",
install_requires=["asyncpg==0.23.0", "minio==7.0.4"],
install_requires=["asyncpg==0.26.0", "minio==7.1.11"],
python_requires=">=3.8",
)
2 changes: 1 addition & 1 deletion scripts/resources/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-alpine
FROM python:3.9-alpine

ARG PYWEBWRAPPER_FRAMEWORK
ARG PROJECT_DIST
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import os
from setuptools import setup, find_packages

requirements = ["fastapi==0.62.0", "uvicorn==0.13.1", "pyyaml==5.3.1"]
requirements = ["fastapi==0.79.0", "uvicorn==0.18.2", "pyyaml==6.0"]

test_requirements = ["pytest==4.6.3", "pytest-cov==2.7.1"]
test_requirements = ["pytest==7.1.2", "pytest-cov==3.0.0"]


setup(
description="Wraps python projects and serves them over HTTPs",
license="BSD license",
include_package_data=True,
keywords="fhir, resources, python, hl7, health IT, healthcare",
name="py-web-wrapper",
name="py-service-wrapper",
packages=find_packages(".", exclude=["*tests*"]),
install_requires=requirements,
tests_require=test_requirements + requirements,
url="https://github.ibm.com/ebaron/dicom-fhir-converter",
url="https://github.com/LinuxForHealth/py-service-wrapper",
version="0.0.1",
python_requires=">=3.6",
)

0 comments on commit 185fc5d

Please sign in to comment.