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
2 changes: 1 addition & 1 deletion .github/workflows/sync-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
if: steps.check.outputs.new_release == 'true'
uses: actions/setup-python@v5
with:
python-version: '3.13'
python-version: '3.11'

- name: Install and test
if: steps.check.outputs.new_release == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13.1
3.11.6
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ select = [
ignore = [
# mutable defaults
"B006",
# import sorting - disabled because orb->orb_sdk rename changes sort order
"I001",
]
unfixable = [
# disable auto fix for print statements
Expand Down
4 changes: 4 additions & 0 deletions scripts/apply-customizations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,8 @@ sed -i 's/--verifytypes orb /--verifytypes orb_sdk /' pyproject.toml
sed -i "s/exclude = \['src\/orb\/_files.py'/exclude = ['src\/orb_sdk\/_files.py'/" pyproject.toml
sed -i 's/known-first-party = \["orb", "tests"\]/known-first-party = ["orb_sdk", "tests"]/' pyproject.toml

# Disable import sorting lint (orb->orb_sdk changes sort order)
echo "Disabling I001 import sorting lint"
sed -i 's/ignore = \[/ignore = [\n # import sorting - disabled because orb->orb_sdk rename changes sort order\n "I001",/' pyproject.toml

echo "Customizations applied successfully"
Loading