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

bug(#308): put more files in .gitignore, remove unused #323

Merged
merged 3 commits into from
Feb 4, 2025
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 .0pdd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# SOFTWARE.
---
errors:
- aliaksei.bialiauski@hey.com
- h1alexbelx@gmail.com
tags:
- pdd
- bug
File renamed without changes.
2 changes: 2 additions & 0 deletions .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@master
with:
config: ./.github/typos.toml
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ venv/
bin/
pwd/
*.egg-info/
.vscode/
.idea/
.DS_Store
*.iml
Expand All @@ -15,5 +14,10 @@ pwd/
.factorypath
pyvenv.cfg
poetry.lock
__pycache__/
.pytest_cache/
.ropeproject/
tmp/
coverage.xml
.coverage
.python-version
1 change: 0 additions & 1 deletion ignore.ghiqc

This file was deleted.

2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ install:
cd sr-train && poetry install

# Full build.
full tests="fast":
full tests="fast or deep":
poetry install
just test "{{tests}}"
just check
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
name = "sr-detection"
version = "0.0.0"
description = ""
authors = ["h1alexbel <aliaksei.bialiauski@hey.com>"]
authors = ["h1alexbel <h1alexbelx@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "sr-data" }, { include = "sr-train" }]
Expand Down
4 changes: 2 additions & 2 deletions sr-data/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
[tool.poetry]
name = "sr-data"
version = "0.0.0"
description = "GitHub repositories data to vectors"
authors = ["h1alexbel <aliaksei.bialiauski@hey.com>"]
description = "GitHub repositories to numerical vectors"
authors = ["h1alexbel <h1alexbelx@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "sr_data", from = "src"}]
Expand Down
2 changes: 1 addition & 1 deletion sr-train/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
name = "sr-train"
version = "0.0.0"
description = "Training of ML models in order to identify sample repositories"
authors = ["h1alexbel <aliaksei.bialiauski@hey.com>"]
authors = ["h1alexbel <h1alexbelx@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "models", from = "src" }]
Expand Down