Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Mar 20, 2024
1 parent 41dd94b commit b9b9544
Show file tree
Hide file tree
Showing 11 changed files with 102 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_GLOBAL_MLSAUCE }}
repository-url: https://upload.pypi.org/legacy/
repository-url: https://upload.pypi.org/legacy/
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ __pycache__/
env/
build/
develop-eggs/
dist/
downloads/
#eggs/
#.eggs/
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ help:
clean: clean-build clean-pyc clean-test ## remove all build, test, coverage and Python artifacts

clean-build: ## remove build artifacts
rm -fr build/
rm -fr dist/
rm -fr build/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
Expand Down
Binary file not shown.
Binary file added dist/mlsauce-0.10.3.tar.gz
Binary file not shown.
36 changes: 36 additions & 0 deletions mlsauce.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Metadata-Version: 2.1
Name: mlsauce
Version: 0.10.3
Summary: Miscellaneous Statistical/Machine Learning tools
Maintainer: T. Moudiki
Maintainer-email: [email protected]
License: BSD3 Clause Clear
Platform: linux
Platform: macosx
Platform: windows
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: Cython
Requires-Dist: joblib
Requires-Dist: pandas
Requires-Dist: requests
Requires-Dist: scikit-learn
Requires-Dist: scipy
Requires-Dist: tqdm
Requires-Dist: jax
Requires-Dist: jaxlib
Provides-Extra: alldeps
Requires-Dist: numpy>=1.13.0; extra == "alldeps"
Requires-Dist: scipy>=0.19.0; extra == "alldeps"

Miscellaneous Statistical/Machine Learning tools
47 changes: 47 additions & 0 deletions mlsauce.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
LICENSE
README.md
setup.cfg
setup.py
mlsauce/__init__.py
mlsauce/_config.py
mlsauce/setup.py
mlsauce.egg-info/PKG-INFO
mlsauce.egg-info/SOURCES.txt
mlsauce.egg-info/dependency_links.txt
mlsauce.egg-info/not-zip-safe
mlsauce.egg-info/requires.txt
mlsauce.egg-info/top_level.txt
mlsauce/adaopt/__init__.py
mlsauce/adaopt/_adaopt.py
mlsauce/adaopt/_adaoptc.c
mlsauce/adaopt/setup.py
mlsauce/booster/__init__.py
mlsauce/booster/_booster_classifier.py
mlsauce/booster/_booster_regressor.py
mlsauce/booster/_boosterc.c
mlsauce/booster/setup.py
mlsauce/datasets/__init__.py
mlsauce/datasets/dowload.py
mlsauce/encoders/__init__.py
mlsauce/encoders/target_encoders.py
mlsauce/lasso/__init__.py
mlsauce/lasso/_lasso.py
mlsauce/lasso/_lassoc.c
mlsauce/lasso/setup.py
mlsauce/ridge/__init__.py
mlsauce/ridge/_ridge.py
mlsauce/ridge/_ridgec.c
mlsauce/ridge/setup.py
mlsauce/stump/__init__.py
mlsauce/stump/_stump_classifier.py
mlsauce/stump/_stumpc.c
mlsauce/stump/setup.py
mlsauce/tests/__init__.py
mlsauce/tests/test_adaopt.py
mlsauce/utils/__init__.py
mlsauce/utils/memoryuse/__init__.py
mlsauce/utils/memoryuse/mem_usage.py
mlsauce/utils/misc/__init__.py
mlsauce/utils/misc/misc.py
mlsauce/utils/sampling/__init__.py
mlsauce/utils/sampling/rowsubsampling.py
1 change: 1 addition & 0 deletions mlsauce.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions mlsauce.egg-info/not-zip-safe
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

14 changes: 14 additions & 0 deletions mlsauce.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
numpy
Cython
joblib
pandas
requests
scikit-learn
scipy
tqdm
jax
jaxlib

[alldeps]
numpy>=1.13.0
scipy>=0.19.0
1 change: 1 addition & 0 deletions mlsauce.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mlsauce

0 comments on commit b9b9544

Please sign in to comment.