Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 2-Clause License

Copyright (c) 2021 - 2022, T. W. van der Heide
Copyright (c) 2021 - 2025, T. W. van der Heide
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/fortformat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#------------------------------------------------------------------------------#
# fortnet-python: Python Tools for the Fortnet Software Package #
# Copyright (C) 2021 - 2022 T. W. van der Heide #
# Copyright (C) 2021 - 2025 T. W. van der Heide #
# #
# See the LICENSE file for terms of usage and distribution. #
#------------------------------------------------------------------------------#
Expand Down
2 changes: 1 addition & 1 deletion src/fortformat/fnetdata.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#------------------------------------------------------------------------------#
# fortnet-python: Python Tools for the Fortnet Software Package #
# Copyright (C) 2021 - 2022 T. W. van der Heide #
# Copyright (C) 2021 - 2025 T. W. van der Heide #
# #
# See the LICENSE file for terms of usage and distribution. #
#------------------------------------------------------------------------------#
Expand Down
2 changes: 1 addition & 1 deletion src/fortformat/fnetout.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#------------------------------------------------------------------------------#
# fortnet-python: Python Tools for the Fortnet Software Package #
# Copyright (C) 2021 - 2022 T. W. van der Heide #
# Copyright (C) 2021 - 2025 T. W. van der Heide #
# #
# See the LICENSE file for terms of usage and distribution. #
#------------------------------------------------------------------------------#
Expand Down
5 changes: 3 additions & 2 deletions test/common.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#------------------------------------------------------------------------------#
# fortnet-python: Python Tools for the Fortnet Software Package #
# Copyright (C) 2021 - 2022 T. W. van der Heide #
# Copyright (C) 2021 - 2025 T. W. van der Heide #
# #
# See the LICENSE file for terms of usage and distribution. #
#------------------------------------------------------------------------------#
Expand Down Expand Up @@ -445,7 +445,8 @@ def get_atomicweights_byatoms(atoms):
weights = []
for atom in atoms:
natom = len(atom)
weights.append(np.asfarray(np.random.randint(1, 100, natom, dtype=int)))
weights.append(np.asarray(
np.random.randint(1, 100, natom, dtype=int), dtype=float))

return weights

Expand Down
2 changes: 1 addition & 1 deletion test/test_fnetdata.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
#------------------------------------------------------------------------------#
# fortnet-python: Python Tools for the Fortnet Software Package #
# Copyright (C) 2021 - 2022 T. W. van der Heide #
# Copyright (C) 2021 - 2025 T. W. van der Heide #
# #
# See the LICENSE file for terms of usage and distribution. #
#------------------------------------------------------------------------------#
Expand Down
2 changes: 1 addition & 1 deletion test/test_fnetout.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
#------------------------------------------------------------------------------#
# fortnet-python: Python Tools for the Fortnet Software Package #
# Copyright (C) 2021 - 2022 T. W. van der Heide #
# Copyright (C) 2021 - 2025 T. W. van der Heide #
# #
# See the LICENSE file for terms of usage and distribution. #
#------------------------------------------------------------------------------#
Expand Down
Loading