Skip to content

Commit

Permalink
refactor: clean up repo and put source files in "src" dir
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Jul 18, 2024
1 parent be8b67a commit 10bb428
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Andreas Schwab <[email protected]>
Max <[email protected]>
William Silversmith <[email protected]>
William Silversmith <[email protected]>
21 changes: 21 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
CHANGES
=======

* ci: add arm64 and x86\_64 to macos build
* perf: add return\_inverse to fr.unique
* perf(unique/array): avoid two operations for return\_index
* feat: point\_cloud supports 2d images

1.14.2
------

* install: bump python to 3.8, add cnp.import\_array()
* ci: re-add macos, remove travis, appveyor
* ci: use numpy without qualification
* ci: properly specify numpy 2.0 and use working artifact uploader
* ci: switch to compiling with numpy 2.0
* ci: use non-buggy version of cibuildwheel
* refactor: remove COUNT\_T
* redesign: remove \_\_version\_\_ attribute
* perf: reduce memory usage during finaly copy for unique\_via\_sort
* fix: unique supports large arrays for the counts
* fix: accurate unique counts for large arrays
* build: more modernizations

1.14.1
------

Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
recursive-include src *
exclude src/fastremap.cpp
include LICENSE
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ def __repr__(self):
ext_modules=[
setuptools.Extension(
'fastremap',
sources=['fastremap.pyx'],
sources=['src/fastremap.pyx'],
depends=[],
language='c++',
language_level=3,
include_dirs=[str(NumpyImport())],
include_dirs=["src", str(NumpyImport())],
extra_compile_args=extra_compile_args,
)
],
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 10bb428

Please sign in to comment.