From e0d36dd9cd13a226fc809421e5752035ecf4ee8c Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Sat, 28 Mar 2015 21:48:44 -0400 Subject: [PATCH 1/2] Linked version badge to tagged version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5f8ed8..3c37c6b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ cadquery-freecad-module ======================= -[![GitHub version](https://badge.fury.io/gh/jmwright%2Fcadquery-freecad-module.svg)](http://badge.fury.io/gh/jmwright%2Fcadquery-freecad-module) +[![GitHub version](https://badge.fury.io/gh/jmwright%2Fcadquery-freecad-module.svg)](https://github.com/jmwright/cadquery-freecad-module/releases/tag/v0.1.8) [![License](https://img.shields.io/badge/license-LGPL-lightgrey.svg)](https://github.com/jmwright/cadquery-freecad-module/blob/master/LICENSE) A module-workbench combo that adds a CadQuery editor to FreeCAD. Please see the [wiki](https://github.com/jmwright/cadquery-freecad-module/wiki) for more detailed information on getting started. From 79fc9df5a9dd14f89769fc9a2664456b8a0bf29c Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Tue, 7 Apr 2015 13:20:55 -0400 Subject: [PATCH 2/2] Updated library zip build script to remove frosted and pies, and add pyflakes. --- CadQuery/Tools/package_libraries.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CadQuery/Tools/package_libraries.py b/CadQuery/Tools/package_libraries.py index 885f95f..01e740d 100644 --- a/CadQuery/Tools/package_libraries.py +++ b/CadQuery/Tools/package_libraries.py @@ -12,11 +12,10 @@ ZIP = os.path.join(os.getcwd(), 'libs.zip') if len(sys.argv) == 2 and sys.argv[1] == 'gen': #--- gen zip file - import jedi, pep8, pyqode, pyqode.core, pyqode.python, pyqode.qt, pygments, frosted, pies, builtins, future, \ - docutils + import jedi, pep8, pyqode, pyqode.core, pyqode.python, pyqode.qt, pygments, frosted, pies, builtins, future, pyflakes, docutils from qidle.system import embed_package_into_zip embed_package_into_zip([jedi, pep8, pyqode, pyqode.core, pyqode.python, - pyqode.qt, pygments, frosted, pies, builtins, future, docutils], ZIP) + pyqode.qt, pygments, pyflakes, builtins, future, docutils], ZIP) else: # remove all pyqode path from sys.path (to make sure the package are # imported from the zip archive)