-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdev-environment.yml
More file actions
41 lines (41 loc) · 947 Bytes
/
dev-environment.yml
File metadata and controls
41 lines (41 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Use this file to construct an environment
# for developing scyjava from source.
#
# First, install mambaforge:
#
# https://github.com/conda-forge/miniforge#mambaforge
#
# Then run:
#
# mamba env create -f dev-environment.yml
# conda activate scyjava-dev
#
# In addition to the dependencies needed for using scyjava, it
# includes tools for developer-related actions like running
# automated tests (pytest) and linting the code (ruff). If you
# want an environment without these tools, use environment.yml.
name: scyjava-dev
channels:
- conda-forge
dependencies:
- python = 3.9
# Project dependencies
- jpype1 >= 1.3.0
- jgo
- cjdk
# Test dependencies
- numpy
- pandas
# Developer tools
- assertpy
- pytest
- pytest-cov
- python-build
- ruff
- toml
- validate-pyproject
# Project from source
- pip
- pip:
- git+https://github.com/ninia/jep.git@cfca63f8b3398daa6d2685428660dc4b2bfab67d
- -e .