Skip to content

Commit

Permalink
Bump version to 0.2.6, update Python version to 3.11, and upgrade dep…
Browse files Browse the repository at this point in the history
…endencies
  • Loading branch information
stochastic-sisyphus authored Dec 10, 2024
1 parent 9fbffbe commit 3f8274d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.x"
python-version: "3.11" # Use Python 3.11 for building
cache: 'pip'
cache-dependency-path: |
requirements.txt
Expand Down
26 changes: 13 additions & 13 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = advanced-data-processing
version = 0.2.5
version = 0.2.6
description = An advanced data processing pipeline for machine learning workflows
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -23,27 +23,27 @@ classifiers =
packages = find:
python_requires = >=3.8
install_requires =
pandas>=1.3.0
dask[complete]>=2022.1.0
pandas>=1.5.0
dask[complete]>=2023.1.0
scikit-learn>=1.0.0
numpy>=1.20.0
numpy>=1.23.0
tqdm>=4.62.0
PyYAML>=5.4.1
psutil>=5.9.0
torch>=2.0.0
torch>=2.1.0

[options.extras_require]
all =
mlflow>=2.6.0
optuna>=3.0.0
shap>=0.40.0
mlflow>=2.8.0
optuna>=3.3.0
shap>=0.43.0
lime>=0.2.0
fastapi>=0.68.0
docker>=5.0.0
great-expectations>=0.13.0
kedro>=0.17.0
fastapi>=0.100.0
docker>=6.1.0
great-expectations>=0.17.0
kedro>=0.18.0
wandb>=0.15.0
ray>=2.6.0
ray>=2.7.0
nlp =
nltk>=3.6.0
spacy>=3.1.0
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="advanced-data-processing",
version="0.2.5", # Increment version
version="0.2.6", # Increment version
author="Vanessa Beck",
author_email="your.email@example.com",
description="An advanced data processing pipeline for machine learning workflows",
Expand All @@ -22,6 +22,8 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down

0 comments on commit 3f8274d

Please sign in to comment.