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

Enhancement #2

Merged
merged 9 commits into from
May 8, 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
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ body:
value: |
Please provide the following information.
- type: input
id: alchemy-version
id: auroris-version
attributes:
label: Alchemy version
description: Value of ``alchemy.__version__``
label: Auroris version
description: Value of ``auroris.__version__``
placeholder: 0.2.5, 0.3.0, 0.3.1, etc.
validations:
required: true
Expand All @@ -34,7 +34,7 @@ body:
id: installation
attributes:
label: Installation
description: How was Alchemy installed?
description: How was Auroris installed?
placeholder: e.g., "using pip into virtual environment", or "using conda"
validations:
required: true
Expand All @@ -56,4 +56,4 @@ body:
id: additional-output
attributes:
label: Additional output
description: If you think it might be relevant, please provide the output from ``pip freeze`` or ``conda env export`` depending on which was used to install Alchemy.
description: If you think it might be relevant, please provide the output from ``pip freeze`` or ``conda env export`` depending on which was used to install Auroris.
6 changes: 5 additions & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ jobs:
cache-downloads: true

- name: Install library
run: python -m pip install --no-deps .
run: |
python -m pip install --no-deps .
# Note: Temporarily upgrade mkdocs-jupyter through PyPi
# See https://github.com/conda-forge/mkdocs-jupyter-feedstock/pull/30
python -m pip install mkdocs-jupyter -U --force-reinstall
- name: Configure git
run: |
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,11 @@ jobs:
git push origin "${{ inputs.release-version }}"
- name: Install library
run: python -m pip install --no-deps .
run: |
python -m pip install --no-deps .
# Note: Temporarily upgrade mkdocs-jupyter through PyPi
# See https://github.com/conda-forge/mkdocs-jupyter-feedstock/pull/29
python -m pip install mkdocs-jupyter -U --force-reinstall
- name: Build the wheel and sdist
run: python -m build --no-isolation
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,12 @@ jobs:
python=${{ matrix.python-version }}
- name: Install library
run: python -m pip install --no-deps -e . # -e (editable is needed for code coverage)
run: |
python -m pip install --no-deps .
# Note: Temporarily upgrade mkdocs-jupyter through PyPi
# See https://github.com/conda-forge/mkdocs-jupyter-feedstock/pull/30
python -m pip install mkdocs-jupyter -U --force-reinstall
- name: Install UMAP
run: python -m pip install umap-learn # Optional dependency
Expand All @@ -52,7 +57,7 @@ jobs:
run: pytest

- name: Test CLI
run: alchemy --help
run: auroris --help

- name: Test building the doc
run: mkdocs build
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Alchemy
# Auroris

Tools for data curation in the Polaris ecosystem.


### Getting started

```python
from alchemy.curation import Curator
from alchemy.curation.actions import MoleculeCuration, OutlierDetection, Discretization
from auroris.curation import Curator
from auroris.curation.actions import MoleculeCuration, OutlierDetection, Discretization

# Define the curation workflow
curator = Curator(
Expand Down
3 changes: 0 additions & 3 deletions alchemy/report/__init__.py

This file was deleted.

67 changes: 0 additions & 67 deletions alchemy/report/broadcaster/_base.py

This file was deleted.

70 changes: 0 additions & 70 deletions alchemy/report/broadcaster/_html.py

This file was deleted.

8 changes: 0 additions & 8 deletions alchemy/visualization/__init__.py

This file was deleted.

Loading
Loading