Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
# 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 (black). If you
# automated tests (pytest) and linting the code (ruff). If you
# want an environment without these tools, use environment.yml.
name: scyjava-dev
channels:
Expand All @@ -22,6 +22,7 @@ dependencies:
# Project dependencies
- jpype1 >= 1.3.0
- jgo
- cjdk
- openjdk >= 8, < 12
# Test dependencies
- numpy
Expand All @@ -37,6 +38,5 @@ dependencies:
# Project from source
- pip
- pip:
- cjdk
- git+https://github.com/ninia/jep.git@cfca63f8b3398daa6d2685428660dc4b2bfab67d
- -e .
3 changes: 2 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
# It includes the dependencies needed for using scyjava, but not tools
# for developer-related actions like running automated tests (pytest),
# linting the code (black), and generating the API documentation (sphinx).
# linting the code (ruff), and generating the API documentation (sphinx).
# If you want an environment including these tools, use dev-environment.yml.

name: scyjava
Expand All @@ -23,6 +23,7 @@ dependencies:
# Project dependencies
- jpype1 >= 1.3.0
- jgo
- cjdk
- openjdk >= 8
# Project from source
- pip
Expand Down
Loading