Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude git repo from the package metadata for PyPI #915

Merged
merged 2 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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