File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7676# built documents.
7777#
7878import qt_epics
79+
7980# The short X.Y version.
8081version = qt_epics .__version__
8182# The full version, including alpha/beta/rc tags.
107108#
108109html_theme = 'sphinx_rtd_theme'
109110import sphinx_rtd_theme
111+
110112html_theme_path = [sphinx_rtd_theme .get_html_theme_path ()]
111113
112114# Theme options are theme-specific and customize the look and feel of a theme
Original file line number Diff line number Diff line change 77Modifications:
88"""
99
10+ import time
11+
1012from epics import PV
1113from qtpy import QtCore , QtWidgets
12- import time
1314
1415STOPIFACTIVESIGNAL = 'stopifactive'
1516STARTSIGNAL = 'start'
Original file line number Diff line number Diff line change 11
22from ._version import get_versions
3+
34__version__ = get_versions ()['version' ]
45del get_versions
Original file line number Diff line number Diff line change 55@author: slepicka
66'''
77import sys
8- from qtpy import QtWidgets
9- from QtEpicsMotorLabel import QtEpicsMotorLabel
8+
109from QtEpicsMotorEntry import QtEpicsMotorEntry
11- from QtEpicsPVLabel import QtEpicsPVLabel
10+ from QtEpicsMotorLabel import QtEpicsMotorLabel
1211from QtEpicsPVEntry import QtEpicsPVEntry
12+ from QtEpicsPVLabel import QtEpicsPVLabel
13+ from qtpy import QtWidgets
1314
1415
1516class MainWindow (QtWidgets .QWidget ):
Original file line number Diff line number Diff line change 1- from os import path
2- from setuptools import setup , find_packages
31import sys
4- import versioneer
2+ from os import path
53
4+ from setuptools import find_packages , setup
5+
6+ import versioneer
67
78# NOTE: This file must remain Python 2 compatible for the foreseeable future,
89# to ensure that we error out properly for people with outdated setuptools
Original file line number Diff line number Diff line change 277277"""
278278
279279from __future__ import print_function
280+
280281try :
281282 import configparser
282283except ImportError :
283284 import ConfigParser as configparser
285+
284286import errno
285287import json
286288import os
@@ -1561,6 +1563,7 @@ def run(self):
15611563
15621564 if "cx_Freeze" in sys .modules : # cx_freeze enabled?
15631565 from cx_Freeze .dist import build_exe as _build_exe
1566+
15641567 # nczeczulin reports that py2exe won't like the pep440-style string
15651568 # as FILEVERSION, but it can be used for PRODUCTVERSION, e.g.
15661569 # setup(console=[{
You can’t perform that action at this time.
0 commit comments