Skip to content

Commit

Permalink
Merge pull request #103 from flatironinstitute/96-alignment-invariant…
Browse files Browse the repository at this point in the history
…-map-to-map-distance

alignment invariant map to map distance
  • Loading branch information
DSilva27 authored Jan 17, 2025
2 parents 60ee77f + bfbe8b6 commit 7b51e1e
Show file tree
Hide file tree
Showing 11 changed files with 590 additions and 174 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
fail-fast: false


Expand Down
169 changes: 0 additions & 169 deletions .gitignore

This file was deleted.

15 changes: 11 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.metadata]
allow-direct-references = true

[tool.hatch.build]
include = [
"src/cryo_challenge",
Expand All @@ -17,7 +20,7 @@ name = "cryo-em-heterogeneity-challenge-1"
dynamic = ["version"]
description = ''
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
license = "MIT"
keywords = []
authors = [
Expand All @@ -31,10 +34,10 @@ authors = [
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
Expand All @@ -54,9 +57,13 @@ dependencies = [
"ipyfilechooser",
"omegaconf",
"pydantic",
"ecos"
"ecos",
"dask",
"dask[distributed]",
"dask_hpc_runner @ git+https://github.com/jacobtomlinson/dask-hpc-runner.git@main",
]


[project.optional-dependencies]
dev = [
"pytest",
Expand Down
Empty file.
Loading

0 comments on commit 7b51e1e

Please sign in to comment.