Skip to content

Commit

Permalink
new version which excludes tests from distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
JoanneBogart committed Aug 15, 2023
1 parent 2320412 commit ce81bb8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
exclude tests* tests/* tests/utils/*
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,15 @@ requires-python = ">=3.7" # For setuptools >= 61.0 support
[tool.setuptools.dynamic]
version = {attr = ".skycatalogs._version.__version__"}

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
where = ["."]
where = ["./"]
namespaces = false
exclude = ["tests/*"]



[tool.setuptools.package-data]
"skycatalogs" = [
Expand Down
2 changes: 1 addition & 1 deletion skycatalogs/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.6.0-rc1"
__version__ = "1.6.0-rc2"

0 comments on commit ce81bb8

Please sign in to comment.