Skip to content

Commit

Permalink
Merge pull request #7 from AllenCellModeling/bugfix/publish-workflow
Browse files Browse the repository at this point in the history
Attempt to fix publish workflow
  • Loading branch information
pgarrison authored Aug 3, 2023
2 parents 2efd4f9 + ccdd6fa commit 923f977
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -24,5 +24,5 @@ jobs:
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: aicspypi
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/test-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.8]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
Expand All @@ -29,10 +29,10 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 923f977

Please sign in to comment.