We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f83edfa commit b083173Copy full SHA for b083173
dev-environment.yml
@@ -18,7 +18,7 @@ name: scyjava-dev
18
channels:
19
- conda-forge
20
dependencies:
21
- - python >= 3.9
+ - python = 3.9
22
# Project dependencies
23
- jpype1 >= 1.3.0
24
- jgo
src/scyjava/config.py
@@ -1,3 +1,5 @@
1
+from __future__ import annotations
2
+
3
import enum as _enum
4
import logging as _logging
5
import os as _os
src/scyjava/inspect.py
@@ -2,6 +2,8 @@
High-level convenience functions for inspecting Java objects.
"""
6
7
from sys import stdout as _stdout
8
9
from scyjava import _introspect
0 commit comments