Skip to content
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
20 changes: 19 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,14 @@ jobs:
poetry build
popd
shell: bash

- name: Build fine_python_flake8
if: runner.os == 'Linux'
run: |
pushd extensions/fine_python_flake8
poetry build
popd
shell: bash

- name: Build fine_python_isort
if: runner.os == 'Linux'
Expand All @@ -112,6 +120,14 @@ jobs:
popd
shell: bash

- name: Build fine_python_module_exports
if: runner.os == 'Linux'
run: |
pushd extensions/fine_python_module_exports
poetry build
popd
shell: bash

- name: Build fine_python_mypy
if: runner.os == 'Linux'
run: |
Expand Down Expand Up @@ -145,9 +161,11 @@ jobs:
cp finecode_extension_api/dist/* dist/
cp extensions/fine_python_ast/dist/* dist/
cp extensions/fine_python_black/dist/* dist/
cp extensions/fine_python_flake8/dist/* dist/
cp extensions/fine_python_isort/dist/* dist/
cp extensions/fine_python_module_exports/dist/* dist/
cp extensions/fine_python_mypy/dist/* dist/
# cp presets/fine_python_format/dist/* dist/
cp presets/fine_python_format/dist/* dist/
shell: bash

- name: Store the distribution packages
Expand Down
40 changes: 15 additions & 25 deletions extensions/fine_python_flake8/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions extensions/fine_python_flake8/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ authors = [{ name = "Vladyslav Hnatiuk", email = "aders1234@gmail.com" }]
readme = "README.md"
requires-python = ">=3.11, < 3.14"
dependencies = [
"finecode_extension_api @ git+https://github.com/finecode-dev/finecode.git#subdirectory=finecode_extension_api",
"fine_python_ast @ git+https://github.com/finecode-dev/finecode.git#subdirectory=extensions/fine_python_ast",
"finecode_extension_api==0.1.0",
"fine_python_ast==0.1.0",
"types-flake8 (>=7.1.0.20241020,<8.0.0.0)",
"flake8 (>=7.1.2,<8.0.0)",
]
Expand Down
1 change: 1 addition & 0 deletions extensions/fine_python_module_exports/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Module exports
34 changes: 12 additions & 22 deletions extensions/fine_python_module_exports/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions extensions/fine_python_module_exports/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ description = ""
authors = [{ name = "Vladyslav Hnatiuk", email = "aders1234@gmail.com" }]
readme = "README.md"
requires-python = ">= 3.11, < 3.14"
dependencies = [
"finecode_extension_api @ git+https://github.com/finecode-dev/finecode.git#subdirectory=finecode_extension_api",
"fine_python_ast @ git+https://github.com/finecode-dev/finecode.git#subdirectory=extensions/fine_python_ast",
]
dependencies = ["finecode_extension_api==0.1.0", "fine_python_ast==0.1.0"]


[build-system]
Expand Down
1 change: 1 addition & 0 deletions presets/fine_python_format/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Recommended FineCode preset for formatting in Python projects
Loading
Loading