Skip to content

Commit d638843

Browse files
author
Brendan Chou
authored
Fix publish script (#190)
1 parent 48d6197 commit d638843

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
uses: actions/checkout@v3
1515

1616
- name: Set up Python 3.11
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818
with:
1919
python-version: 3.11
2020

2121
- name: Install Dependencies
22-
run: sudo pip install -r requirements-lint.txt
22+
run: pip install -r requirements-lint.txt
2323

2424
- name: Lint
2525
run: flake8

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
uses: actions/checkout@v3
1414

1515
- name: Set up Python 3.11
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v4
1717
with:
1818
python-version: 3.11
1919

2020
- name: Install Dependencies
21-
run: sudo pip install -r requirements-publish.txt
21+
run: pip install -r requirements-publish.txt
2222

2323
- name: init .pypirc
2424
env:

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
uses: actions/checkout@v3
1515

1616
- name: Set up Python 3.11
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818
with:
1919
python-version: 3.11
2020

2121
- name: Run Ganache
2222
run: docker-compose up -d
2323

2424
- name: Install Dependencies
25-
run: sudo pip install -r requirements-test.txt
25+
run: pip install -r requirements-test.txt
2626

2727
- name: Test
2828
env:

requirements-publish.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
setuptools>=60.0.0
2-
wheel==0.33.4
3-
twine==1.13.0
2+
wheel==0.38.4
3+
twine==4.0.2

0 commit comments

Comments
 (0)