Skip to content

Commit

Permalink
Minor adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkrz committed Dec 13, 2023
1 parent 248a39a commit 4f5c282
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 19 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
We suggest to use *miniconda* as package manager for your system. Create and activate conda environment with:

```bash
conda env create -f environment.yaml
conda env create -f environment.yml
conda activate wsi-pre2
```

## Code quality
## Coding best practices

The main branch is protected. Please checkout your own development branch and draft a Pull Request to commit changes.

This repository uses pre-commit hooks and Github Actions for code quality, inspired by the [Lightning Hydra Template](https://github.com/ashleve/lightning-hydra-template).

Expand Down
17 changes: 0 additions & 17 deletions environment.yaml

This file was deleted.

17 changes: 17 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: wsi-pre2
channels:
- defaults
- conda-forge
dependencies:
- pip
- python=3.9.*
- openslide=3.4.1 # C-Library, latest release from 2015
- openslide-python=1.2.0 # Python binding, release from 2022
- pre-commit=3.*
- pip:
- opencv-python==4.5.5.62
- Pillow==9.5.0
- pandas==1.5.2 # Before switching from Numpy to Apache Arrow backend
- numpy==1.24.4
- matplotlib==3.7.*
- tqdm==4.66.1

0 comments on commit 4f5c282

Please sign in to comment.