Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/CDCgov/phdi into k8-data-pi…
Browse files Browse the repository at this point in the history
…peline
  • Loading branch information
emmastephenson committed Jul 12, 2023
2 parents 0ad3c6a + 8d19f9d commit 4a4e062
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion containers/alerts/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ azure-identity
typing_extensions==4.5.0
pydantic==1.10.9
fastapi==0.96.0
phdi @ git+https://github.com/CDCgov/phdi@python310
phdi @ git+https://github.com/CDCgov/phdi@main
uvicorn
httpx
slack_sdk
Expand Down
2 changes: 1 addition & 1 deletion containers/ingestion/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
typing_extensions==4.6.3
pydantic==1.10.9
fastapi==0.96.0
phdi @ git+https://github.com/CDCgov/phdi@python310
phdi @ git+https://github.com/CDCgov/phdi@main
uvicorn
httpx
2 changes: 1 addition & 1 deletion containers/message-parser/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
typing_extensions==4.5.0
pydantic==1.10.9
fastapi==0.96.0
phdi @ git+https://github.com/CDCgov/phdi@python310
phdi @ git+https://github.com/CDCgov/phdi@main
uvicorn
httpx
pytest
Expand Down
2 changes: 1 addition & 1 deletion containers/record-linkage/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ typing_extensions==4.5.0
uvicorn
pydantic==1.10.9
fastapi==0.96.0
phdi @ git+https://github.com/CDCgov/phdi@python310
phdi @ git+https://github.com/CDCgov/phdi@main
httpx
pathlib
2 changes: 1 addition & 1 deletion containers/tabulation/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
typing_extensions==4.5.0
pydantic==1.10.9
fastapi==0.96.0
phdi @ git+https://github.com/CDCgov/phdi@python310
phdi @ git+https://github.com/CDCgov/phdi@main
uvicorn
httpx
pytest
Expand Down
2 changes: 1 addition & 1 deletion containers/validation/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
typing_extensions==4.5.0
pydantic==1.10.9
fastapi==0.96.0
phdi @ git+https://github.com/CDCgov/phdi@python310
phdi @ git+https://github.com/CDCgov/phdi@main
uvicorn
httpx
pytest
Expand Down
2 changes: 1 addition & 1 deletion tutorials/python-update-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For the test.yaml, update the `TEST_RUNNER_PYTHON_VERSION` to your new python ve
## Changing requirements.txt
To upgrade python, understanding the current state of the repo is key. Currently as of June 2023, phdi is self-referential because the `requirements.txt` in the contianers/* folder points to the actual phdi pypi project itself. Therefore, when upgrading python, you have to point the requirements.txt to the current branch that has the new version of python. For example, if your branch is named `upgradepython3x`, then your requirements.txt file will have an entry named `phdi @ git+https://github.com/CDCgov/phdi@upgradepython3x`

Once you push these changes into GitHub, you must change the `requirements.txt` file to point to main. Therefore it will be `phdi @ git+https://github.com/CDCgov/phdi@python310`
Once you push these changes into GitHub, you must change the `requirements.txt` file to point to main. Therefore it will be `phdi @ git+https://github.com/CDCgov/phdi@main`

The files that need to be changed are
- containers/alerts/requirements.txt
Expand Down

0 comments on commit 4a4e062

Please sign in to comment.