Skip to content

Commit

Permalink
fix reqs and pypi CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dinarior committed May 29, 2023
1 parent fd0c15a commit bc826ca
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@
- name: Publish artifacts
uses: actions/upload-artifact@v2
with:
name: build_wheels
path: |
./wheelhouse/*.whl
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pdc_dp_means/release.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.5"
__version__ = "0.0.6"
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
numpy
scikit-learn
scikit-learn>=1.2,<1.3
numpy>=1.23.0
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit bc826ca

Please sign in to comment.