Skip to content
Snippets Groups Projects

#118: Set up complete CI/CD pipeline

Merged Moul requested to merge 118_enh_ci into dev
Compare and
4 files
+ 71
49
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -17,6 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
@@ -17,6 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
import base64
import base64
import libnacl
import libnacl
 
from libnacl.version import version as libnacl_version
import re
import re
from typing import Optional, List, Dict, Any
from typing import Optional, List, Dict, Any
@@ -31,7 +32,7 @@ HEADER_PREFIX = "-----"
@@ -31,7 +32,7 @@ HEADER_PREFIX = "-----"
DASH_ESCAPE_PREFIX = "\x2D\x20"
DASH_ESCAPE_PREFIX = "\x2D\x20"
# Version field value
# Version field value
VERSION_FIELD_VALUE = "Python Libnacl " + libnacl.__version__
VERSION_FIELD_VALUE = "Python Libnacl " + libnacl_version
# Parser cursor status
# Parser cursor status
ON_MESSAGE_FIELDS = 1
ON_MESSAGE_FIELDS = 1
Loading