-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore:
pkg-config
added to Docker File (#95)
* chore: `pkg-config` added to Docker File + PIP Reqs This is to future proof the update of mysql client in future releases. See: edx/edx-arch-experiments#349 * fix: Docker Compose issues * fix: Bringing all pip req.s in line with those used by the code in `2u/project-theseus` * fix: make upgrade on Py3.8 This is a guess, but since im upgrading the requirements locally, and i rebuilt my venv... It swapped Python versions to 3.10 instead of 3.8 (the target of our other tooling)... ``` brew install [email protected] python3.8 -m venv .venv . .venv/bin/activate make upgrade ```
- Loading branch information
Showing
21 changed files
with
993 additions
and
768 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,13 +20,16 @@ MAINTAINER [email protected] | |
|
||
# gcc; for compiling python extensions distributed with python packages like mysql-client | ||
|
||
# pkg-config is now required for libmysqlclient-dev and its python dependencies | ||
|
||
# If you add a package here please include a comment above describing what it is used for | ||
RUN apt-get update && apt-get -qy install --no-install-recommends \ | ||
language-pack-en \ | ||
locales \ | ||
python3.8 \ | ||
python3-pip \ | ||
libmysqlclient-dev \ | ||
pkg-config \ | ||
libssl-dev \ | ||
python3-dev \ | ||
gcc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ edx-rest-api-client | |
mysqlclient | ||
openedx-filters | ||
pytz | ||
stripe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# Requirements for running tests on CI | ||
# Requirements for running tests in CI | ||
|
||
-c constraints.txt | ||
|
||
codecov # Code coverage reporting | ||
tox # Virtualenv management for tests | ||
tox-battery # Makes tox aware of requirements file changes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,35 @@ | ||
# | ||
# This file is autogenerated by pip-compile with python 3.8 | ||
# To update, run: | ||
# This file is autogenerated by pip-compile with Python 3.8 | ||
# by the following command: | ||
# | ||
# make upgrade | ||
# | ||
certifi==2022.6.15 | ||
# via requests | ||
charset-normalizer==2.1.0 | ||
# via requests | ||
codecov==2.1.12 | ||
# via -r requirements/ci.in | ||
coverage==6.4.1 | ||
# via codecov | ||
distlib==0.3.4 | ||
distlib==0.3.7 | ||
# via virtualenv | ||
filelock==3.7.1 | ||
filelock==3.12.3 | ||
# via | ||
# tox | ||
# virtualenv | ||
idna==3.3 | ||
# via requests | ||
packaging==21.3 | ||
packaging==23.1 | ||
# via tox | ||
platformdirs==2.5.2 | ||
platformdirs==3.10.0 | ||
# via virtualenv | ||
pluggy==1.0.0 | ||
pluggy==1.3.0 | ||
# via tox | ||
py==1.11.0 | ||
# via tox | ||
pyparsing==3.0.9 | ||
# via packaging | ||
requests==2.28.1 | ||
# via codecov | ||
six==1.16.0 | ||
# via | ||
# tox | ||
# virtualenv | ||
toml==0.10.2 | ||
# via tox | ||
tox==3.25.1 | ||
tomli==2.0.1 | ||
# via tox | ||
tox==3.28.0 | ||
# via | ||
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt | ||
# -r requirements/ci.in | ||
# tox-battery | ||
tox-battery==0.6.2 | ||
# via -r requirements/ci.in | ||
urllib3==1.26.9 | ||
# via requests | ||
virtualenv==20.15.1 | ||
typing-extensions==4.7.1 | ||
# via filelock | ||
virtualenv==20.24.4 | ||
# via tox |
Oops, something went wrong.