Skip to content

Commit

Permalink
[main](chore) Update project information and package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kzajac97 committed Oct 20, 2024
1 parent 02c2552 commit 956b9f1
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
with:
options: "--check --verbose -l 120"
jupyter: false
version: "23.7.0"
version: "24.8.0"

flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install flake8
run: pip install flake8==6.0.0
run: pip install -r requirements-dev.txt
- name: Run flake8
uses: py-actions/flake8@v2
with:
Expand All @@ -29,6 +29,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install isort
run: pip install isort==5.12.0
run: pip install -r requirements-dev.txt
- name: Run isort
run: isort . -l 120 --check
15 changes: 12 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
[project]
name = "orthogonal-neural-networks"
version = "1.0.0"
description = "Implementation for paper 'Orthogonal Transforms in Neural Networks Amount to Effective Regularization'"
license = {text = "MIT"}
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Krzysztof Zając", email = "krzysztof.zajac@pwr.edu.pl"}
]

[tool.black]
line-length = 120
target-version = ['py39', 'py310', 'py311']
target-version = ['py311', 'py312']
include = '\.pyi?$'


[tool.isort]
profile = 'black'
line_length = 120
py_version = 310
py_version = 312

[tool.mypy]
exclude = [
Expand Down
4 changes: 4 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-r requirements.txt
black==24.8.0
flake8==7.1.1
isort==5.13.2
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ pandas==2.0.3
scikit-learn==1.3.0
torch==2.1.0 # CPU only version
lightning==2.1.0 # install after torch

git+https://github.com/cyber-physical-systems-group/pydentification.git@v0.3.0 # our main library

0 comments on commit 956b9f1

Please sign in to comment.