-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from yohila/main
Added New Version IOKR
- Loading branch information
Showing
18 changed files
with
5,335 additions
and
2,958 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,60 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- "main" | ||
|
||
jobs: | ||
build_wheels: | ||
name: Build wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
## os: [ubuntu-20.04, windows-2019, macos-10.15] | ||
os: [ubuntu-20.04] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
# to supply options, put them in 'env', like: | ||
# env: | ||
# CIBW_SOME_OPTION: value | ||
|
||
- uses: actions/upload-artifact@v2 | ||
with: | ||
path: ./wheelhouse/*.whl | ||
|
||
|
||
|
||
# name: Build | ||
|
||
# on: [push, pull_request] | ||
# on: | ||
# push: | ||
# branches-ignore: | ||
# - main | ||
# pull_request: | ||
# branches-ignore: | ||
# - main | ||
|
||
# jobs: | ||
# build_wheels: | ||
# name: Build wheels on ${{ matrix.os }} | ||
# runs-on: ${{ matrix.os }} | ||
# strategy: | ||
# matrix: | ||
# # os: [ubuntu-20.04, windows-2019, macos-10.15] | ||
# os: [windows-2019] | ||
# os: [macos-10.15] | ||
# # os: [ubuntu-20.04, windows-2019, macos-10.15] | ||
|
||
# steps: | ||
# - uses: actions/checkout@v2 | ||
|
||
# - name: Build wheels | ||
# uses: pypa/[email protected] | ||
# # to supply options, put them in 'env', like: | ||
# # env: | ||
# # CIBW_SOME_OPTION: value | ||
|
||
# - uses: actions/upload-artifact@v2 | ||
# with: | ||
# path: ./wheelhouse/*.whl | ||
|
||
|
||
|
||
# # name: Build | ||
|
||
# # on: | ||
# # push: | ||
# # branches-ignore: | ||
# # - main | ||
# # pull_request: | ||
# # branches-ignore: | ||
# # - main | ||
|
||
# # jobs: | ||
# # build_wheels: | ||
# # name: Build wheels on ${{ matrix.os }} | ||
# # runs-on: ${{ matrix.os }} | ||
# # strategy: | ||
# # matrix: | ||
# # os: [macos-10.15] | ||
# # # os: [ubuntu-20.04, windows-2019, macos-10.15] | ||
|
||
# # steps: | ||
# # - uses: actions/checkout@v2 | ||
|
||
# # - name: Build wheels | ||
# # uses: pypa/[email protected] | ||
# # # to supply options, put them in 'env', like: | ||
# # # env: | ||
# # # CIBW_SOME_OPTION: value | ||
# # - uses: actions/upload-artifact@v2 | ||
# # with: | ||
# # path: ./wheelhouse/*.whl | ||
# - uses: actions/checkout@v2 | ||
|
||
# - name: Build wheels | ||
# uses: pypa/[email protected] | ||
# # to supply options, put them in 'env', like: | ||
# # env: | ||
# # CIBW_SOME_OPTION: value | ||
# - uses: actions/upload-artifact@v2 | ||
# with: | ||
# path: ./wheelhouse/*.whl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Generating Wheels | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- "main" | ||
# branches: [ main ] | ||
schedule: | ||
- cron: '0 0 1 * *' | ||
# pull_request: | ||
# branches: | ||
# - '*' | ||
|
||
jobs: | ||
run: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest] | ||
# os: [macos-latest, ubuntu-latest, windows-latest] | ||
python: ['3.7', '3.8', '3.9'] | ||
env: | ||
OS: ${{ matrix.os }} | ||
PYTHON: ${{ matrix.python }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Build and compile | ||
run: make dist | ||
# to supply options, put them in 'env', like: | ||
# env: | ||
# CIBW_SOME_OPTION: value | ||
|
||
- uses: actions/upload-artifact@v2 | ||
with: | ||
path: ./dist/*.whl | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Python package build and publish | ||
|
||
# on: | ||
# release: | ||
# types: [created] | ||
on: | ||
push: | ||
branches-ignore: | ||
- "main" | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.9 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
# pip install twine flake8 | ||
# - name: Lint with flake8 for syntax errors | ||
# run: | | ||
# pip install flake8 | ||
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
- name: Build manylinux Python wheels | ||
uses: RalfG/[email protected]_x86_64 | ||
with: | ||
python-versions: 'cp39-cp39' | ||
build-requirements: 'cython numpy scikit-learn==1.0' | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
path: ./dist/*.whl | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: pytesting 3.10 | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- "main" | ||
# branches: [ main ] | ||
schedule: | ||
- cron: '0 0 1 * *' | ||
# pull_request: | ||
# branches: | ||
# - '*' | ||
|
||
jobs: | ||
run: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest] | ||
# os: [macos-latest, ubuntu-latest, windows-latest] | ||
python: ['3.10',] | ||
env: | ||
OS: ${{ matrix.os }} | ||
PYTHON: ${{ matrix.python }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: '3.10' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
################### Use this when you want to use local wheel installation through dist ################# | ||
pip install -r requirements.txt | ||
# - name: Lint with flake8 | ||
# run: | | ||
# pip install flake8 | ||
# # stop the build if there are Python syntax errors or undefined names | ||
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
# - name: Test with pytest | ||
# run: | | ||
# pip install pytest | ||
# pytest -v --cov=structured-predictions --cov-report=html | ||
|
||
|
||
# - name: Build and compile | ||
# run: | | ||
# make dist | ||
# python setup.py develop | ||
|
||
- name: Build and compile | ||
run: | | ||
make clean | ||
# pip install . | ||
################## Use this when you want to use local wheel installation through dist ###################### | ||
make dist | ||
pip install dist/* | ||
############################################################################# | ||
# python setup.py develop | ||
# pip install -i https://test.pypi.org/simple/ structured-predictions==0.0.6 | ||
# pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple structured-predictions | ||
# pip install -i https://test.pypi.org/simple/ structured-predictions | ||
# python tests/tests_DIOKR/Demo_DeepIOKR_bibtex.py | ||
- name: Test with pytest | ||
run: | | ||
pip install pytest | ||
pytest tests/tests_OK3/test_tree_clf_and_reg.py tests/tests_OK3/test_complementary.py | ||
pytest tests/tests_DIOKR | ||
# python tests/tests_IOKR/ISOKR.py | ||
# python tests/tests_IOKR/SISOKR.py | ||
# pytest tests/tests_IOKR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.