Skip to content

Commit

Permalink
[MNT] update setup and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bxdd committed Jan 14, 2024
1 parent b1888ab commit f14d040
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_learnware_with_pip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- name: Install learnware
run: |
conda run -n learnware python -m pip install learnware
conda run -n learnware python -m pip install learnware[full]
- name: Test workflow
run: |
conda run -n learnware python -m pytest tests/test_workflow/
conda run -n learnware python -m pytest tests/test_workflow/test_hetero_workflow.py
4 changes: 2 additions & 2 deletions .github/workflows/test_learnware_with_source.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
- name: Install learnware
run: |
conda run -n learnware python -m pip install .
conda run -n learnware python -m pip install .[full]
- name: Test workflow
run: |
conda run -n learnware python -m pytest tests/test_workflow/
conda run -n learnware python -m pytest tests/test_workflow/test_hetero_workflow.py
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def get_version(rel_path: str) -> str:
setup(
name=NAME,
version=VERSION,
license="MIT Licence",
url="https://github.com/Learnware-LAMDA/Learnware",
license="Apache-2.0 Licence",
url="https://gitee.com/beimingwu/learnware",
packages=find_packages(),
include_package_data=True,
description=DESCRIPTION,
Expand All @@ -110,7 +110,6 @@ def get_version(rel_path: str) -> str:
"Topic :: Scientific/Engineering",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit f14d040

Please sign in to comment.