Skip to content

Commit

Permalink
final CI
Browse files Browse the repository at this point in the history
  • Loading branch information
FL33TW00D committed Jun 19, 2021
1 parent f20f248 commit 792671c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,12 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: windows-latest
python-version: [3.6, 3.7, 3.8]

python-version: 3.6
- os: windows-latest
python-version: 3.7
- os: windows-latest
python-version: 3.8

steps:
- uses: actions/checkout@v1

Expand Down Expand Up @@ -133,12 +137,6 @@ jobs:
MATURIN_PASSWORD: ${{ secrets.PYPI }}
run: poetry run maturin publish --username __token__ -i python${{ matrix.python-version }}

- name: PyPi publish nix
if: matrix.os != 'windows-latest'
env:
MATURIN_PASSWORD: ${{ secrets.PYPI }}
run: poetry run maturin publish --username __token__ -i python${{ matrix.python-version }}

#windows autodiscovers 4 python versions
- name: PyPi publish windows
if: matrix.os == 'windows-latest'
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-dtw"
version = "0.1.11"
version = "0.1.12"
authors = ["Christopher Fleetwood"]
edition = "2018"
description = "A rust implementation of dynamic time warping with python bindings!"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build-backend = "maturin"

[tool.poetry]
name = "rust-dtw"
version = "0.1.11"
version = "0.1.12"
description = "A rust implementation of dynamic time warping with python bindings!"
license = "MIT"
readme = "README.md"
Expand Down

0 comments on commit 792671c

Please sign in to comment.