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

Sync with upstream repository #24

Closed
wants to merge 15 commits into from
Closed
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
5 changes: 2 additions & 3 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,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,full-lexer,serde -- -Dwarnings

- uses: actions/setup-python@v4
with:
Expand All @@ -73,4 +73,3 @@ jobs:
'core/**/*.rs'
'literal/**/*.rs'
'parser/**/*.rs'
'ast/asdl_rs.py'
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ __pycache__
.*sw*
.vscode
.idea/
.venv/

flame-graph.html
flame.txt
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",
"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