Skip to content

Commit aa8c7d5

Browse files
committed
Happy new year
1 parent 0001279 commit aa8c7d5

File tree

169 files changed

+179
-173
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+179
-173
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019 - 2022 Geode-solutions
1+
# Copyright (c) 2019 - 2023 Geode-solutions
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

COPYLEFT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
## Dependencies
22

33
OpenGeode: MIT
4-
Copyright (c) 2019 - 2022 Geode-solutions
4+
Copyright (c) 2019 - 2023 Geode-solutions

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 - 2022 Geode-solutions
3+
Copyright (c) 2019 - 2023 Geode-solutions
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion

bindings/python/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019 - 2022 Geode-solutions
1+
# Copyright (c) 2019 - 2023 Geode-solutions
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

bindings/python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019 - 2022 Geode-solutions
1+
# Copyright (c) 2019 - 2023 Geode-solutions
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

bindings/python/copy_wheel.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019 - 2022 Geode-solutions
1+
# Copyright (c) 2019 - 2023 Geode-solutions
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

bindings/python/inspector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2019 - 2022 Geode-solutions. All rights reserved.
2+
# Copyright (c) 2019 - 2023 Geode-solutions. All rights reserved.
33
#
44

55
import opengeode

bindings/python/setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019 - 2022 Geode-solutions
1+
# Copyright (c) 2019 - 2023 Geode-solutions
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the 'Software'), to deal
@@ -23,17 +23,21 @@
2323
from setuptools.command.install import install
2424
from os import path
2525

26+
2627
class BinaryDistribution(Distribution):
2728
def has_ext_modules(self):
2829
return True
30+
2931
def is_pure(self):
3032
return False
31-
33+
34+
3235
class InstallPlatlib(install):
3336
def finalize_options(self):
3437
install.finalize_options(self)
3538
self.install_lib = self.install_platlib
3639

40+
3741
with open(path.join('${CMAKE_SOURCE_DIR}', 'README.md'), encoding='utf-8') as f:
3842
long_description = f.read()
3943
with open('${CMAKE_CURRENT_LIST_DIR}/requirements.txt') as f:
@@ -61,4 +65,4 @@ def finalize_options(self):
6165
zip_safe=False,
6266
distclass=BinaryDistribution,
6367
cmdclass={'install': InstallPlatlib}
64-
)
68+
)

bindings/python/src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019 - 2022 Geode-solutions
1+
# Copyright (c) 2019 - 2023 Geode-solutions
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)