Skip to content

Commit

Permalink
Exclude py files from docs, examples, scripts, tests from wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
sgillies committed May 23, 2023
1 parent 461ec31 commit 0277f5f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Changes

All issue numbers are relative to https://github.com/Toblerity/Fiona/issues.

1.9.4.post1 (2023-05-23)
------------------------

Extraneous files were unintentionally packaged in the 1.9.4 wheels. This post1
release excludes them so that wheel contents are as in version 1.9.3.

1.9.4 (2023-05-16)
------------------

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ global-exclude .DS_Store
global-exclude *.pyc
recursive-exclude docs/data *
recursive-exclude docs/_build *
recursive-exclude _build *
recursive-exclude venv *
exclude *.txt *.py
recursive-include docs *.rst *.txt
Expand Down
2 changes: 1 addition & 1 deletion fiona/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"remove",
]

__version__ = "1.9.5dev"
__version__ = "1.9.4.post1"
__gdal_version__ = get_gdal_release_name()

gdal_version = get_gdal_version_tuple()
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,5 @@ include-package-data = false
version = {attr = "fiona.__version__"}
readme = {file = ["README.rst", "CHANGES.txt", "CREDITS.txt"]}

[tool.setuptools.packages]
find = {}
[tool.setuptools.packages.find]
exclude = ["docs*", "examples*", "scripts*", "tests*", "venv*"]

0 comments on commit 0277f5f

Please sign in to comment.