Skip to content

Commit 172a50d

Browse files
authored
Merge pull request #16 from jgsogo/master
Recover shebang, encoding declaration and non-ascii chars in author name
2 parents 9a14a6e + a268b1e commit 172a50d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

conanfile.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
14
from conans import ConanFile
25

36

47
class CtreConan(ConanFile):
58
name = "CTRE"
69
license = "MIT"
710
url = "https://github.com/hanickadot/compile-time-regular-expressions"
8-
author = "Hana Dusikova ([email protected])"
11+
author = "Hana Dusíková ([email protected])"
912
description = "Compile Time Regular Expression for C++17/20"
1013
homepage = "https://github.com/hanickadot/compile-time-regular-expressions"
1114
no_copy_source = True

0 commit comments

Comments
 (0)