Skip to content

Commit

Permalink
Merge pull request #151 from sb-ai-lab/dev/architecture_v11
Browse files Browse the repository at this point in the history
Dev/architecture v11
  • Loading branch information
tikhomirovd authored Mar 4, 2025
2 parents 3c5355b + 80a40c8 commit 7df6ebd
Show file tree
Hide file tree
Showing 158 changed files with 29,310 additions and 23,370 deletions.
4 changes: 4 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[flake8]
max-line-length = 120
ignore = E203, E266, E501, W503
exclude = .venv, .git, __pycache__, build, dist
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
- [Adding new submodules](#adding-new-submodules)
- [Adding Tutorials](#adding-tutorials)

## Beginning
## Beginning

We're thrilled you're considering contributing to HypEx! Your contributions help keep HypEx robust and valuable. Here's
how you can get involved:
Expand Down Expand Up @@ -271,7 +271,7 @@ poetry run pre-commit install
If you experience any issues with pre-commit, please ask for support on the
usual help channels.

### Testing
### Testing
(in progress)

## Documentation
Expand Down
1 change: 0 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,3 @@
- [ ] All new and existing tests passed.
- [ ] Documentation has been updated to reflect the changes made.
- [ ] I have verified that the changes fix the issue as described.

1 change: 0 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,3 @@
- [ ] I have verified that the changes are accurate and necessary.
- [ ] The updated documentation has been tested for clarity and comprehensibility.
- [ ] All modified sections are properly formatted and adhere to project documentation standards.

37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Continuous Integration

on:
push:
branches: [ master, dev/master ]
paths-ignore:
- "docs/**"
- "*.md"
pull_request:
branches: [ master, dev/master ]
paths-ignore:
- "docs/**"
- "*.md"

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ 3.8, 3.9, 3.10.10 ]
os: [ ubuntu-latest, macos-latest, windows-latest ]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run pre-commit checks
run: poetry run pre-commit run --all-files
- name: Run tests
run: poetry run pytest
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ dmypy.json
# Pyre type checker
.pyre/

# pytype static type analyzer
# pytype static type analyzers
.pytype/

# Cython debug symbols
Expand All @@ -160,8 +160,3 @@ lama_venv/
temp/

poetry.lock


# catboost dir
catboost/
catboost_info/*
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ formats: all
python:
install:
- requirements: docs/requirements.txt
- path: .
- path: .
128 changes: 0 additions & 128 deletions CODE_OF_CONDUCT.md

This file was deleted.

Loading

0 comments on commit 7df6ebd

Please sign in to comment.