File tree Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 73
73
intersphinx_mapping = {
74
74
'python' : ('https://docs.python.org/3/' , None ),
75
75
'numpy' : ('https://numpy.org/doc/stable/' , None ),
76
- 'scipy' : ('https://docs.scipy.org/doc/scipy/reference/ ' , None ),
76
+ 'scipy' : ('https://docs.scipy.org/doc/scipy/' , None ),
77
77
'pandas' : ('https://pandas.pydata.org/pandas-docs/stable/' , None ),
78
78
'qtutils' : ('https://qtutils.readthedocs.io/en/stable/' , None ),
79
79
'pyqtgraph' : (
80
80
'https://pyqtgraph.readthedocs.io/en/latest/' ,
81
81
None ,
82
82
), # change to stable once v0.11 is published
83
- 'matplotlib' : ('https://matplotlib.org/' , None ),
84
- 'h5py' : ('http ://docs.h5py.org/en/stable/' , None ),
83
+ 'matplotlib' : ('https://matplotlib.org/stable/ ' , None ),
84
+ 'h5py' : ('https ://docs.h5py.org/en/stable/' , None ),
85
85
'pydaqmx' : ('https://pythonhosted.org/PyDAQmx/' , None ),
86
86
'qt' : (
87
87
'' ,
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
requires = [" setuptools>=42" , " wheel" , " setuptools_scm[toml]>=4.1.0" ]
3
3
build-backend = " setuptools.build_meta"
4
-
5
- [tool .setuptools_scm ]
6
- version_scheme = " release-branch-semver"
7
- local_scheme = " node-and-date"
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ spincore = spinapi
42
42
nidaqmx = PyDAQmx
43
43
nivision = PyNIVision
44
44
docs =
45
- Sphinx ==3.5.3
45
+ Sphinx ==4.4.0
46
46
sphinx-rtd-theme ==0.5.2
47
47
recommonmark ==0.6.0
48
48
m2r ==0.2.1
Original file line number Diff line number Diff line change
1
+ import os
1
2
from setuptools import setup
2
3
3
- setup ()
4
+ VERSION_SCHEME = {
5
+ "version_scheme" : "release-branch-semver" ,
6
+ "local_scheme" : os .getenv ("SCM_LOCAL_SCHEME" , "node-and-date" ),
7
+ }
8
+
9
+ setup (use_scm_version = VERSION_SCHEME )
You can’t perform that action at this time.
0 commit comments