Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Commit 923f977

Browse files
authored
Merge pull request #7 from AllenCellModeling/bugfix/publish-workflow
Attempt to fix publish workflow
2 parents 2efd4f9 + ccdd6fa commit 923f977

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v1
1515
with:
16-
python-version: 3.7
16+
python-version: 3.8
1717
- name: Install Dependencies
1818
run: |
1919
python -m pip install --upgrade pip
@@ -24,5 +24,5 @@ jobs:
2424
- name: Publish to PyPI
2525
uses: pypa/gh-action-pypi-publish@release/v1
2626
with:
27-
user: aicspypi
27+
user: __token__
2828
password: ${{ secrets.PYPI_TOKEN }}

.github/workflows/test-and-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
python-version: [3.6, 3.7, 3.8]
10+
python-version: [3.8]
1111
os: [ubuntu-latest, windows-latest, macOS-latest]
1212

1313
steps:
@@ -29,10 +29,10 @@ jobs:
2929

3030
steps:
3131
- uses: actions/checkout@v1
32-
- name: Set up Python 3.7
32+
- name: Set up Python 3.8
3333
uses: actions/setup-python@v1
3434
with:
35-
python-version: 3.7
35+
python-version: 3.8
3636
- name: Install Dependencies
3737
run: |
3838
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)