Skip to content

Commit

Permalink
checked testpypi
Browse files Browse the repository at this point in the history
  • Loading branch information
dariomalchiodi committed Oct 13, 2024
1 parent 0752838 commit d846261
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ authors = [
description = "A python package for inducing membership functions from labeled data"
keywords = ["fuzzy set", "fuzzy membership", "machine learning"]
readme = "README.md"
requires-python = ">=3.6"
requires-python = ">=3.8"
dependencies = [
"gurobipy",
"json_fix",
"numpy",
"numpy<2.0",
"tqdm",
"scipy",
"scikit-learn"
"scikit-learn",
"tensorflow==2.17"
]
license = {text = "Apache-2.0"}
classifiers = [
Expand All @@ -26,10 +29,6 @@ classifiers = [

dynamic = ['version']

[project.optional-dependencies]
gurobi = ["gurobipy"]
tensorflow = ["tensorflow"]

[project.urls]
Homepage = "https://github.com/dariomalchiodi/mulearn"
Documentation = "https://mulearn-mr.readthedocs.io/"
Expand Down
2 changes: 1 addition & 1 deletion src/mulearn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.3.2'
__version__ = '0.3.9'


import copy
Expand Down
5 changes: 0 additions & 5 deletions src/mulearn/optimization.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
Note that at least one of these libraries is needed in order to solve the
optimization problems involved in the fuzzy inference process.
The module also checks the availability of tqdm, which is used in order to
graphically depict the progress of some learning processes using a progress
bar. However, this package is not strictly needed: if it is not installed,
the above mentioned progress bars will not be displayed.
"""

import numpy as np
Expand All @@ -37,7 +33,6 @@
import os

os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
logging.getLogger('tensorflow').setLevel(logging.FATAL)
import tensorflow as tf

tensorflow_ok = True
Expand Down

0 comments on commit d846261

Please sign in to comment.