Skip to content

Commit 7fa49ef

Browse files
authored
Merge pull request #415 from tutorcruncher/updates
Upgrades
2 parents 2f75591 + 8960f91 commit 7fa49ef

File tree

3 files changed

+27
-10
lines changed

3 files changed

+27
-10
lines changed

.github/workflows/ci.yml renamed to .github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,20 @@ jobs:
5656
run: bash <(curl -s https://codecov.io/bash)
5757
env:
5858
CODECOV_TOKEN: '8f06c81f-01b9-4803-9b84-40c45bf7ff17'
59+
60+
deploy:
61+
needs:
62+
- test
63+
if: "success() && startsWith(github.ref, 'refs/tags/')"
64+
runs-on: ubuntu-latest
65+
66+
env:
67+
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
68+
HEROKU_APP: tc-socket
69+
70+
steps:
71+
- uses: actions/checkout@v2
72+
- run: git fetch --unshallow
73+
- run: git switch master
74+
- run: git remote add heroku https://heroku:[email protected]/$HEROKU_APP.git
75+
- run: git push heroku master

tcsocket/requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
SQLAlchemy==1.3.23
22
aiodns==3.0.0
3-
aiohttp==3.8.0
3+
aiohttp==3.8.1
44
aiopg==1.3.3
55
aioredis==1.3.1
66
arq==0.22
7-
boto3==1.19.11
7+
boto3==1.20.28
88
cchardet==2.1.7
99
gunicorn==20.1.0
1010
python-dateutil==2.8.2
11-
pillow==8.4.0
12-
pydantic[email]==1.8.2
11+
pillow==9.0.0
12+
pydantic[email]==1.9.0
1313
raven==6.10.0
14-
requests==2.26.0
14+
requests==2.27.0
1515
uvloop==0.16.0
16-
ipython==7.29.0
16+
ipython==7.31.0
1717
pgcli==3.2.0
1818
ipython-sql==0.4.0
1919
yarl==1.7.2

tests/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
attrs==21.2.0
2-
black==21.10b0
3-
coverage==6.1.1
1+
attrs==21.4.0
2+
black==21.12b0
3+
coverage==6.2
44
flake8==4.0.1
5-
isort==5.10.0
5+
isort==5.10.1
66
pycodestyle==2.8.0
77
pyflakes==2.4.0
88
pytest==6.2.5

0 commit comments

Comments
 (0)