diff --git a/.github/workflows/build_wheels.yaml b/.github/workflows/build_wheels.yaml index fc0ddb4..70f80cb 100644 --- a/.github/workflows/build_wheels.yaml +++ b/.github/workflows/build_wheels.yaml @@ -127,7 +127,6 @@ - name: Publish artifacts uses: actions/upload-artifact@v2 with: - name: build_wheels path: | ./wheelhouse/*.whl @@ -140,7 +139,7 @@ uses: dawidd6/action-download-artifact@v2 with: github_token: ${{ secrets.GITHUB_TOKEN }} - name: build_wheels + name: artifact path: dist - name: Publish to PyPI diff --git a/pdc_dp_means/release.py b/pdc_dp_means/release.py index b1a19e3..034f46c 100644 --- a/pdc_dp_means/release.py +++ b/pdc_dp_means/release.py @@ -1 +1 @@ -__version__ = "0.0.5" +__version__ = "0.0.6" diff --git a/requirements.txt b/requirements.txt index de7064c..6f59148 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -numpy -scikit-learn \ No newline at end of file +scikit-learn>=1.2,<1.3 +numpy>=1.23.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 7b5efbb..9e6b7bd 100644 --- a/setup.py +++ b/setup.py @@ -72,6 +72,8 @@ def remove_symlink(link_path): "Programming Language :: Python :: 3.11", ], install_requires=[ + "scikit-learn>=1.2,<1.3", + "numpy>=1.23.0", ], tests_require=[ "pytest",