Skip to content

Commit

Permalink
Metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
droserasprout committed Dec 2, 2024
1 parent 5a907cb commit 192dc34
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 51 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@ jobs:
include:
- os: ubuntu-latest
arch: amd64
python-version: "3.13"
- os: ubuntu-latest
arch: arm64
arch: amd64
python-version: "3.9"
# - os: ubuntu-latest
# arch: arm64
# - os: macos-latest
# arch: amd64
- os: macos-latest
arch: arm64
# - os: macos-latest
# arch: arm64
steps:
- name: Check out the repo
uses: actions/checkout@v4
Expand All @@ -34,7 +38,7 @@ jobs:
uses: astral-sh/setup-uv@v4
with:
version: "latest"
python-version: "3.12"
python-version: "${{ matrix.python-version }}"

- name: Run install
run: uv run make install
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
!**/Makefile
!**/pyproject.toml
!**/requirements*
!**/uf.lock
!**/uv.lock
!**/README.md
!**/.keep
!**/py.typed
!src/**/py.typed

# Add Python code
!src/**/*.py
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Initial release; forked from `py-substrate-interface`.

- All network-related functions and methods return coroutines now.
- Optional cryptography dependencies moved to the optional `full` extra.
- Added Python 3.13, macOS and arm64 environments to the test matrix.
- Added Python 3.13 to the test matrix.

<!-- Links -->
[keep a changelog]: https://keepachangelog.com/en/1.0.0/
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ docs = [
line-length = 120
target-version = "py312"

[tool.ruff.lint]
# [tool.ruff.lint]
# extend-select = ["B", "C4", "FA", "G", "I", "PTH", "Q", "RET", "RUF", "TCH", "UP"]
extend-select = ["I", "Q"]
flake8-quotes = { inline-quotes = "single", multiline-quotes = "double" }
isort = { force-single-line = true, known-first-party = ["aiosubstrate"] }
# extend-select = ["I", "Q"]
# flake8-quotes = { inline-quotes = "single", multiline-quotes = "double" }
# isort = { force-single-line = true, known-first-party = ["aiosubstrate"] }

[tool.ruff.format]
quote-style = "single"
Expand Down
40 changes: 0 additions & 40 deletions uv.lock

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

0 comments on commit 192dc34

Please sign in to comment.