-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename gpx python module to avoid collisions
in preparation to allow wheel installation of the binary extension to possibly allow install without python-dev in the future
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Submodule GPX
updated
7 files
+8 −4 | src/gpx/gpx.c | |
+1 −1 | src/gpx/gpx.h | |
+1 −1 | src/pymodule/Readme.md | |
+6 −6 | src/pymodule/gpxmodule.c | |
+5 −3 | src/pymodule/setup.py | |
+2 −2 | src/pymodule/test.py | |
+1 −1 | src/pymodule/test2.py |
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
from octoprint.server import admin_permission | ||
|
||
try: | ||
import gpx | ||
import gcodex3g as gpx | ||
except: | ||
pass | ||
|
||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
|
||
gpx = False | ||
try: | ||
import gpx | ||
import gcodex3g as gpx | ||
except: | ||
pass | ||
|
||
|
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