We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1943a24 commit 69149cdCopy full SHA for 69149cd
scalecodec/type_registry/acala.json
@@ -93,6 +93,5 @@
93
["end", "Option<BlockNumber>"]
94
]
95
}
96
-
97
98
scalecodec/type_registry/edgeware.json
@@ -110,13 +110,6 @@
110
["ProposalContents", "Vec<u8>"]
111
112
},
113
- "Balance2": "Balance",
114
- "DispatchError": {
115
- "type": "struct",
116
- "type_mapping": [
117
- ["module", "Option<u8>"],
118
- ["error", "u8"]
119
- ]
120
- }
+ "Balance2": "Balance"
121
122
setup.py
@@ -14,7 +14,10 @@
14
# Python 3 only projects can skip this import
15
from io import open
16
17
-if environ.get('CI_COMMIT_TAG'):
+
18
+if environ.get('TRAVIS_TAG'):
19
+ version = environ['TRAVIS_TAG']
20
+elif environ.get('CI_COMMIT_TAG'):
21
version = environ['CI_COMMIT_TAG']
22
else:
23
raise ValueError('Missing commit tag, can\'t set version')
0 commit comments