Skip to content

Commit

Permalink
Update dynareadout to 23.10
Browse files Browse the repository at this point in the history
  • Loading branch information
PucklaJ committed Oct 27, 2023
1 parent df8b803 commit 9006b07
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[submodule "src/dynareadout"]
path = lib/dynareadout
url = https://github.com/PucklaJ/dynareadout.git
branch = 23.09
branch = 23.10
[submodule "src/pybind11"]
path = lib/pybind11
url = https://github.com/pybind/pybind11.git
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dynareadout"
version = "23.09"
version = "23.10"
authors = [
{ name = "PucklaJ", email = "[email protected]"},
]
Expand Down
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@
if os.name == "nt":
cpp_args.append("/std:c++17")
cpp_args.append("/w")
cpp_args.append("/DTHREAD_SAFE")
c_args.append("/w")
else:
cpp_args.append("-std=c++17")
cpp_args.append("-w")
cpp_args.append("-DTHREAD_SAFE")
c_args.append("-ansi")
c_args.append("-w")
link_args.append("-lpthread")
Expand Down Expand Up @@ -48,9 +46,6 @@
'include_dirs': [
os.path.join(dynareadout_dir, 'src'),
],
'macros': [
('THREAD_SAFE', '1'),
],
'cflags': c_args,
}
]]
Expand Down Expand Up @@ -82,7 +77,7 @@
)

setup(name='dynareadout',
version='23.09',
version='23.10',
ext_modules=[dynareadout],
zip_safe=False,
include_package_data=True,
Expand Down

0 comments on commit 9006b07

Please sign in to comment.