Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/hdbscan change #799

Merged
merged 11 commits into from
Jan 27, 2025
Prev Previous commit
Next Next commit
Changed dependancy to be python 3.10 and 3.11
“JoeJ” committed Jan 16, 2025
commit 0a2e69be75c4fcf5227ee24f8ad0ccc7d3967ec9
2 changes: 1 addition & 1 deletion .github/workflows/python-versions.yml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ jobs:
- 6379:6379
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v4
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.10-slim
ENV LANG=C.UTF-8

WORKDIR /usr/src/aggregation
2 changes: 1 addition & 1 deletion Dockerfile.bin_cmds
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9
FROM python:3.10


ENV LANG=C.UTF-8
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dynamic = ["version"]
requires-python = ">=3.8,<3.12"
requires-python = ">=3.10,<3.12"
dependencies = [
"beautifulsoup4>=4.8.1,<4.13",
"collatex>=2.3,<2.4",