Skip to content

Commit

Permalink
Added project version in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaysera committed Feb 5, 2024
1 parent 574df6c commit 0a33793
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
16 changes: 5 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
[build-system]
requires = [
"setuptools>=61.0.0",
"wheel",
'pandas',
'scikit-fuzzy',
'scikit-learn',
'matplotlib',
'deap',
'imblearn'
]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"

[project]
Expand Down Expand Up @@ -51,4 +42,7 @@ omit=[
"./teacher/tree/tests/fdt_legacy_tree.py",
"./teacher/tree/tests/id3_legacy_tree.py",
]
dynamic_context = "test_function"
dynamic_context = "test_function"

[tool.setuptools.dynamic]
version = {attr = "teacher.__version__"}
2 changes: 1 addition & 1 deletion src/teacher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# "X.Y.dev0" is the canonical version of "X.Y.dev".

# Teacher package version
__version__ = "0.1.0"
__version__ = "0.1.1"


# =============================================================================
Expand Down

0 comments on commit 0a33793

Please sign in to comment.