Skip to content

Commit

Permalink
Remove glm_benchmarks from conda package (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtilly authored Feb 4, 2021
1 parent 4a05d6d commit 2cb5b99
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
Changelog
=========

1.2.0 - 2021-02-04
------------------

We removed ``quantcore.glm_benchmarks`` from the conda package.


1.1.1 - 2021-01-11
------------------

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
]
extra_link_args = ["-fopenmp"]


architecture = os.environ.get("GLM_ARCHITECTURE", "native")
if architecture != "default":
extra_compile_args.append("-march=" + architecture)
Expand Down Expand Up @@ -66,7 +65,9 @@
"Programming Language :: Python :: 3.8",
],
package_dir={"": "src"},
packages=find_namespace_packages(where="src"),
packages=find_namespace_packages(
where="src", include=["quantcore.glm"] if os.environ.get("CONDA_BUILD") else []
),
install_requires=[],
entry_points="""
[console_scripts]
Expand Down

0 comments on commit 2cb5b99

Please sign in to comment.