-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfixes - Fixed bug where input_path_or_url could be a PosixPath and not a string Minor updates - Docs: Corrected some verbiage in docs / code documentaiton. - Docs: Added prerequisite information for Python/Java - Dependencies: Updated requests for a securiy update. - Update: robot.jar pathing
- Loading branch information
Showing
4 changed files
with
23 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,13 +15,13 @@ | |
EMAIL = '[email protected]' | ||
AUTHOR = 'Joe Flack' | ||
REQUIRES_PYTHON = '>=3.9.0' | ||
VERSION = '1.0.0' | ||
VERSION = '1.0.1' | ||
|
||
# Requirements | ||
REQUIRED = [ | ||
'bioontologies', | ||
'oaklib>=0.5.1', | ||
'requests', | ||
'requests>2.28.2', | ||
] | ||
|
||
# Description | ||
|
@@ -95,6 +95,8 @@ def run(self): | |
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
'Programming Language :: Python :: Implementation :: PyPy' | ||
], | ||
|