Skip to content

Commit

Permalink
0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ngrislain committed Nov 3, 2021
1 parent c9d6a93 commit fa2ce81
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ name: DP-XGBoost-CI

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
# on: [push, pull_request]
on: [pull_request]
on: [push, pull_request]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
os: [macos-10.15, windows-latest]
python-version: ["3.7", "3.8"]
python-version: ["3.6", "3.7", "3.8"]
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Publish wheels to PyPI
run: |
pip install twine
python -m twine upload python-package/dist/*
python -m twine upload python-package/dist/* || true
build-wheels-linux:
runs-on: ubuntu-latest
Expand All @@ -85,7 +85,7 @@ jobs:
- name: Publish wheels to PyPI
run: |
pip install twine
python -m twine upload python-package/dist/*-manylinux*.whl
python -m twine upload python-package/dist/*-manylinux*.whl || true


2 changes: 1 addition & 1 deletion python-package/dp_xgboost/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.6
0.2.7

0 comments on commit fa2ce81

Please sign in to comment.