Skip to content

Commit

Permalink
loosen dependencies --> 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Mar 20, 2024
1 parent 9077ee8 commit 65fa22c
Show file tree
Hide file tree
Showing 10 changed files with 2,401 additions and 2,471 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/ci-cd.yml

This file was deleted.

12 changes: 6 additions & 6 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
pip install wheel setuptools twine
- name: Build distribution
run: python setup.py sdist
run: python setup.py sdist bdist_wheel

- name: Run examples
run: pip install .&&find examples -maxdepth 2 -name "*.py" -exec python3 {} \;

#- name: Publish to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# password: ${{ secrets.PYPI_GLOBAL_MLSAUCE }}
# repository-url: https://upload.pypi.org/legacy/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_GLOBAL_MLSAUCE }}
repository-url: https://upload.pypi.org/legacy/
1,550 changes: 772 additions & 778 deletions mlsauce/adaopt/_adaoptc.c

Large diffs are not rendered by default.

896 changes: 445 additions & 451 deletions mlsauce/booster/_boosterc.c

Large diffs are not rendered by default.

910 changes: 452 additions & 458 deletions mlsauce/lasso/_lassoc.c

Large diffs are not rendered by default.

732 changes: 363 additions & 369 deletions mlsauce/ridge/_ridgec.c

Large diffs are not rendered by default.

606 changes: 300 additions & 306 deletions mlsauce/stump/_stumpc.c

Large diffs are not rendered by default.

106 changes: 53 additions & 53 deletions mlsauce/stump/_stumpc.html

Large diffs are not rendered by default.

8 changes: 0 additions & 8 deletions requirements.txt

This file was deleted.

19 changes: 10 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /usr/bin/env python
#
# Copyright (C) 2020 T. Moudiki <[email protected]>
# Copyright (C) 2020-2024 T. Moudiki <[email protected]>
# License: 3-clause BSD

import os
Expand Down Expand Up @@ -37,7 +37,7 @@
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'BSD3 Clause Clear'

__version__ = '0.10.1'
__version__ = '0.10.2'

VERSION = __version__

Expand Down Expand Up @@ -144,14 +144,15 @@ def run(self):

def setup_package():

# get the dependencies and installs
here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
all_reqs = f.read().split('\n')

install_all_requires = [
x.strip() for x in all_reqs if "git+" not in x
"numpy",
"Cython",
"joblib",
"pandas",
"requests",
"scikit-learn",
"scipy",
"tqdm"
]

if platform.system() in ('Linux', 'Darwin'):
Expand Down

0 comments on commit 65fa22c

Please sign in to comment.