From f342333d79065b8db800fd63c2f380ac8012327a Mon Sep 17 00:00:00 2001 From: khanhak <76500364+khanhak@users.noreply.github.com> Date: Fri, 22 Apr 2022 22:22:48 -0400 Subject: [PATCH 1/2] Update .travis.yml Include auto deployment to pypi --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index a9a0fdb..abdcd9d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,3 +24,9 @@ after_success: # code coverage : - pip install codecov - codecov + +deploy: + provider: pypi + username: + password: + edge: true From 01345a0c1bd2b9f1e2d160b5736fd39d9955717d Mon Sep 17 00:00:00 2001 From: khanhak <76500364+khanhak@users.noreply.github.com> Date: Fri, 22 Apr 2022 22:27:26 -0400 Subject: [PATCH 2/2] Update .travis.yml to include pushing to after test --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index abdcd9d..acf831c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,13 +20,13 @@ jobs: - pip install pre-commit script: - pre-commit run --all-files -after_success: - # code coverage : - - pip install codecov - - codecov - deploy: provider: pypi username: password: edge: true +after_test: + - ps: | + pip install wheel + python setup.py bdist_wheel + Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }