Skip to content

Commit

Permalink
Exclude git repo from the package metadata for PyPI (#915)
Browse files Browse the repository at this point in the history
* Exclude git repo from the package metadata for PyPI

* Update HISTORY.md
  • Loading branch information
dachengx authored Oct 18, 2024
1 parent 74cf799 commit 1e0b6d8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install dependencies
run: sudo apt-get install -y graphviz
- name: Install requirements
run: pip install .[tests] --force-reinstall
run: pip install git+https://github.com/XENONnT/base_environment.git --force-reinstall
- name: Start MongoDB
uses: supercharge/[email protected]
with:
Expand Down
1 change: 1 addition & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
* Switch to master for docformatter by @dachengx in https://github.com/AxFoundation/strax/pull/912
* Add `max_time` which is the time when hit reaches its maximum by @dachengx in https://github.com/AxFoundation/strax/pull/913
* Small fix of dtype description by @dachengx in https://github.com/AxFoundation/strax/pull/914
* Exclude git repo from the package metadata for PyPI by @dachengx in https://github.com/AxFoundation/strax/pull/915

New Contributors
* @yuema137 made their first contribution in https://github.com/AxFoundation/strax/pull/859
Expand Down
6 changes: 0 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ scipy = "*"
tqdm = ">=4.46.0"
zarr = "*"
zstd = "*"
sharedarray = { url = "https://xenon.isi.edu/python/SharedArray-3.2.3.tar.gz", optional = true }
base_environment = { git = "https://github.com/XENONnT/base_environment.git", optional = true }
sphinx = { version = "*", optional = true }
sphinx_rtd_theme = { version = "*", optional = true }
nbsphinx = { version = "*", optional = true }
Expand All @@ -56,10 +54,6 @@ urllib3 = { version = "2.2.2", optional = true }
lxml_html_clean = { version = "*", optional = true }

[tool.poetry.extras]
tests = [
"sharedarray",
"base_environment",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
Expand Down

0 comments on commit 1e0b6d8

Please sign in to comment.