Skip to content

Commit

Permalink
Merge pull request #148 from praekeltfoundation/test-postgres
Browse files Browse the repository at this point in the history
update python version
  • Loading branch information
Hlamallama authored Jan 16, 2024
2 parents 77bdd58 + 662e46c commit d6f76ec
Show file tree
Hide file tree
Showing 4 changed files with 143 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build-model:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: test
strategy:
matrix:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@ jobs:
lang: ['eng']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/setup-python@v5.0.0
with:
python-version: 3.7.7
- name: Install dependencies
run: |
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc 2>/dev/null | sudo apt-key add -
sudo apt-get update
sudo apt-get -y install postgresql-14
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
black==19.10b0
click==8.0.2
isort==4.3.21
mypy==0.780
flake8==3.8.3
Expand Down
137 changes: 136 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,137 @@
absl-py==0.9.0
aiofiles==0.5.0
aiohttp==3.6.2
APScheduler==3.6.3
astor==0.8.1
async-generator==1.10
async-lru==1.0.2
async-timeout==3.0.1
asyncpg==0.21.0
attrs==19.3.0
boto3==1.13.11
botocore==1.16.11
cachetools==4.1.0
certifi==2020.4.5.1
cffi==1.14.0
chardet==3.0.4
cloudpickle==1.3.0
colorclass==2.2.0
coloredlogs==10.0
colorhash==1.0.2
cryptography==2.9.2
cycler==0.10.0
decorator==4.4.2
dnspython==1.16.0
docopt==0.6.2
docutils==0.15.2
fbmessenger==6.0.0
future==0.18.2
gast==0.2.2
gevent==1.5.0
google-auth==1.14.3
google-auth-oauthlib==0.4.1
google-pasta==0.2.0
greenlet==0.4.15
grpcio==1.29.0
h11==0.8.1
h2==3.2.0
h5py==2.10.0
hpack==3.0.0
hstspreload==2020.5.16
httplib2==0.17.3
httptools==0.1.1
httpx==0.9.3
humanfriendly==8.2
hyperframe==5.2.0
idna==2.8
importlib-metadata==1.6.0
ipaddress==1.0.23
iso6709==0.1.5
jmespath==0.10.0
joblib==0.15.1
jsonpickle==1.4.1
jsonschema==3.2.0
kafka-python==1.4.7
Keras-Applications==1.0.8
Keras-Preprocessing==1.1.2
kiwisolver==1.2.0
Markdown==3.2.2
matplotlib==3.2.1
mattermostwrapper==2.2
multidict==4.7.6
networkx==2.4
numpy==1.18.4
oauth2client==4.1.3
oauthlib==3.1.0
opt-einsum==3.2.1
packaging==20.3
pika==1.1.0
prompt-toolkit==2.0.10
protobuf==3.12.0
psycopg2-binary==2.8.5
pyasn1==0.4.8
pyasn1-modules==0.2.8
pycparser==2.21
pydot==1.4.1
PyJWT==1.7.1
pykwalify==1.7.0
pymongo==3.8.0
pyparsing==2.4.7
pyrsistent==0.16.0
PySocks==1.7.1
python-crfsuite==0.9.7
python-dateutil==2.8.1
python-engineio==3.12.1
python-socketio==4.5.1
python-telegram-bot==12.7
pytz==2019.3
PyYAML==5.3.1
questionary==1.5.2
rasa==1.10.2
greenlet==0.4.16
rasa-sdk==1.10.1
redis==3.5.2
requests==2.23.0
requests-oauthlib==1.3.0
requests-toolbelt==0.9.1
rfc3986==1.4.0
rocketchat-API==1.3.1
rsa==4.0
ruamel.yaml==0.16.10
ruamel.yaml.clib==0.2.0
s3transfer==0.3.3
sanic==19.12.2
Sanic-Cors==0.10.0.post3
sanic-jwt==1.4.1
Sanic-Plugins-Framework==0.9.2
scikit-learn==0.22.2.post1
scipy==1.4.1
sentry-sdk==0.15.1
six==1.14.0
sklearn-crfsuite==0.3.6
slackclient==2.5.0
sniffio==1.1.0
SQLAlchemy==1.3.17
tabulate==0.8.7
tensorboard==2.1.1
tensorflow==2.1.0
tensorflow-addons==0.7.1
tensorflow-estimator==2.1.0
tensorflow-hub==0.8.0
tensorflow-probability==0.9.0
termcolor==1.1.0
terminaltables==3.1.0
tornado==6.0.4
tqdm==4.45.0
# Editable install with no version control (turn-rasa-connector==0.0.1)
twilio==6.26.3
tzlocal==2.1
ujson==2.0.3
urllib3==1.25.9
uvloop==0.14.0
wcwidth==0.1.9
webexteamssdk==1.3
websockets==8.0.2
Werkzeug==1.0.1
wrapt==1.12.1
yarl==1.4.2
zipp==3.1.0

0 comments on commit d6f76ec

Please sign in to comment.