Skip to content

Commit 4ccdf9c

Browse files
authored
Merge pull request #5 from TaskarCenterAtUW/feature-remove-test-package
Removed test package and add package from pypi.org
2 parents 40e9ff4 + d74aac0 commit 4ccdf9c

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ FROM python:3.10
22
WORKDIR /code
33
COPY ./requirements.txt /code/requirements.txt
44
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
5-
RUN python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple python-osw-validation==0.0.3
65
COPY ./src /code/src
76
EXPOSE 8080
87
CMD ["uvicorn", "src.main:app", "--reload", "--host", "0.0.0.0", "--port", "8080"]

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ Follow the steps to install the python packages required for both building and r
4646
```
4747
# Installing requirements
4848
pip install -r requirements.txt
49-
# Installing python-osw-validation package
50-
pip install -i https://test.pypi.org/simple/ python-osw-validation==0.0.3
5149
```
5250
### How to Run the Server/APIs
5351

requirements.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ uvicorn==0.20.0
77
coverage==7.2.7
88
html_testRunner==1.2.1
99
httpx==0.24.1
10-
11-
jsonschema==4.19.1
12-
zipfile36==0.1.3
10+
python-osw-validation==0.0.3

0 commit comments

Comments
 (0)