-
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
297cf33
commit 0951db7
Showing
7 changed files
with
17 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
dragonfire (1.1.1) unstable; urgency=medium | ||
|
||
* Upgraded pip version from `9.0.1` to `19.3.1` for TensorFlow `1.15.0` | ||
* Upgraded TensorFlow version from `1.14.0` to `1.15.0` | ||
* Upgraded DeepPavlov version from `0.6.1` to `0.7.1` | ||
|
||
-- Mehmet Mert Yildiran <[email protected]> Wed, Dec 18 2019 22:15:17 +0300 | ||
|
||
dragonfire (1.1.0) unstable; urgency=medium | ||
|
||
* The badge generation service changed from Badgen to Shields | ||
|
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/usr/bin/python3 | ||
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.1.0','console_scripts','dragonfire' | ||
__requires__ = 'dragonfire==1.1.0' | ||
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.1.1','console_scripts','dragonfire' | ||
__requires__ = 'dragonfire==1.1.1' | ||
import re | ||
import sys | ||
from pkg_resources import load_entry_point | ||
|
||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) | ||
sys.exit( | ||
load_entry_point('dragonfire==1.1.0', 'console_scripts', 'dragonfire')() | ||
load_entry_point('dragonfire==1.1.1', 'console_scripts', 'dragonfire')() | ||
) |
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