Skip to content

Commit

Permalink
Update Python dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pemistahl committed Oct 30, 2023
1 parent 2709188 commit faf9da2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 24 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ on:
paths:
- 'Cargo.lock'
- 'Cargo.toml'
- 'pyproject.toml'
- 'requirements.txt'
- 'src/**'
- 'tests/**'
- '**.yml'
Expand All @@ -31,6 +33,8 @@ on:
paths:
- 'Cargo.lock'
- 'Cargo.toml'
- 'pyproject.toml'
- 'requirements.txt'
- 'src/**'
- 'tests/**'
- '**.yml'
Expand Down
23 changes: 1 addition & 22 deletions .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,33 +119,12 @@ jobs:
name: wheels
path: dist

sdist:
name: Source distribution

runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Build source distribution
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist

- name: Upload source distribution
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

release:
name: Publish wheels to PyPI

runs-on: ubuntu-latest

needs: [linux, windows, macos, sdist]
needs: [linux, windows, macos]

steps:
- name: Download wheels from previous jobs
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
maturin == 1.2.3
pytest == 7.4.0
maturin == 1.3.1
pytest == 7.4.3

0 comments on commit faf9da2

Please sign in to comment.