Skip to content
This repository was archived by the owner on Jul 27, 2023. It is now read-only.

Remove fold, unparse, and location features #9

Merged
merged 1 commit into from
Jun 19, 2023
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: run tests with num-bigint
run: cargo test --all --no-default-features --features num-bigint
- name: run tests with malachite-bigint and all features
run: cargo test --all --features location,malachite-bigint,constant-optimization,fold,unparse,visitor,all-nodes-with-ranges,full-lexer,serde --exclude rustpython-ast-pyo3
run: cargo test --all --features malachite-bigint,all-nodes-with-ranges,full-lexer,serde

lint:
name: Check Rust code with rustfmt and clippy
Expand All @@ -55,7 +55,7 @@ jobs:
- name: run clippy
run: cargo clippy --all --no-default-features --features num-bigint
- name: run clippy
run: cargo clippy --all --features location,malachite-bigint,constant-optimization,fold,unparse,visitor,all-nodes-with-ranges,full-lexer,serde --exclude rustpython-ast-pyo3 -- -Dwarnings
run: cargo clippy --all --features malachite-bigint,all-nodes-with-ranges,full-lexer,serde -- -Dwarnings

- uses: actions/setup-python@v4
with:
Expand Down
4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ include = ["LICENSE", "Cargo.toml", "src/**/*.rs"]
[workspace]
resolver = "2"
members = [
"ast", "core", "format", "literal", "parser",
"ast-pyo3",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This relies on fold, but it's also something I don't feel the need to maintain.

"ruff_text_size", "ruff_source_location",
"ast", "core", "format", "literal", "parser", "ruff_text_size",
]

[workspace.dependencies]
Expand Down
72 changes: 0 additions & 72 deletions ast-pyo3/.gitignore

This file was deleted.

23 changes: 0 additions & 23 deletions ast-pyo3/Cargo.toml

This file was deleted.

15 changes: 0 additions & 15 deletions ast-pyo3/pyproject.toml

This file was deleted.

3 changes: 0 additions & 3 deletions ast-pyo3/rustpython_ast/__init__.py

This file was deleted.

Loading