Skip to content

Commit

Permalink
Merge pull request #180 from amplify-education/AT-10041_rename_python…
Browse files Browse the repository at this point in the history
…_dependency_file

[AT-10041] Rename Python dependency file to the standard name: requirements.txt
  • Loading branch information
skim-amplify authored Mar 4, 2024
2 parents 3785a53 + 7b60f72 commit 0e1c6fc
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def get_version():


def get_requirements():
"""Reads the installation requirements from requirements.pip"""
with open("requirements.pip", encoding="utf-8") as reqfile:
"""Reads the installation requirements from requirements.txt"""
with open("requirements.txt", encoding="utf-8") as reqfile:
return [
line
for line in reqfile.read().split("\n")
Expand Down
2 changes: 1 addition & 1 deletion terrawrap/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Place of record for the package version"""

__version__ = "0.9.33"
__version__ = "0.9.34"
__git_hash__ = "GIT_HASH"
File renamed without changes.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ skipsdist = true

[testenv]
commands =
pip install --upgrade -r requirements.pip -r test-requirements.pip -e .
pip install --upgrade -r requirements.txt -r test-requirements.txt -e .
nosetests --config=tox.ini terrawrap bin test/unit
coverage xml -o reports/coverage.xml

Expand Down

0 comments on commit 0e1c6fc

Please sign in to comment.