Skip to content

Commit

Permalink
update python headers
Browse files Browse the repository at this point in the history
Signed-off-by: Karol Gugala <[email protected]>
  • Loading branch information
kgugala committed Apr 28, 2020
1 parent 39cd1cb commit e5dc293
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 8 deletions.
4 changes: 3 additions & 1 deletion sdf_timing/__main__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
#!/usr/bin/env python3
# coding: utf-8

# Copyright (C) 2020 The SymbiFlow Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
#


import argparse
import json
Expand Down
4 changes: 3 additions & 1 deletion sdf_timing/sdflex.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# coding: utf-8

# Copyright (C) 2020 The SymbiFlow Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
#


import ply.lex as lex

Expand Down
3 changes: 2 additions & 1 deletion sdf_timing/sdfparse.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
# coding: utf-8

# Copyright (C) 2020 The SymbiFlow Authors.
#
Expand All @@ -7,7 +8,7 @@
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
#


from . import sdflex
from . import sdfyacc
Expand Down
2 changes: 1 addition & 1 deletion sdf_timing/sdfwrite.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
# coding: utf-8

# Copyright (C) 2020 The SymbiFlow Authors.
#
Expand All @@ -7,7 +8,6 @@
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
#


def gen_timing_entry(entry):
Expand Down
3 changes: 2 additions & 1 deletion sdf_timing/sdfyacc.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# coding: utf-8

# Copyright (C) 2020 The SymbiFlow Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
#

import ply.yacc as yacc

Expand Down
3 changes: 2 additions & 1 deletion sdf_timing/utils.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# coding: utf-8

# Copyright (C) 2020 The SymbiFlow Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
#

import re

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# coding: utf-8

# Copyright (C) 2020 The SymbiFlow Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
#

import setuptools

Expand Down
3 changes: 2 additions & 1 deletion tests/parse_all_test.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# coding: utf-8

# Copyright (C) 2020 The SymbiFlow Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
#

from sdf_timing import sdfparse
import os
Expand Down

0 comments on commit e5dc293

Please sign in to comment.