Skip to content

Commit

Permalink
Merge pull request #54 from Dobatymo/update-setup-info
Browse files Browse the repository at this point in the history
Update setup info
fix mac os runner version due to missing python versions
  • Loading branch information
Dobatymo committed May 15, 2024
2 parents 7219c92 + 86cc708 commit 2af9462
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-13, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
packages=find_packages(),
author="Pablo Carneiro Elias",
author_email="pablo.cael@gmail.com",
url="https://github.com/pablocael/pynear",
description="An efficient implementation of Vantage Point Tree for Python 3",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -44,6 +45,6 @@
install_requires=["numpy>=1.21.2"],
package_dir={"pynear": "pynear"},
extras_require={"test": ["pytest>=6.0"]},
python_requires=">=3.6",
python_requires=">=3.7",
license_files=("LICENSE",),
)

0 comments on commit 2af9462

Please sign in to comment.