Skip to content

Commit 614b97a

Browse files
committed
refactor: upgrade to ApeWorX project structure; drop Py <3.10
1 parent d92445c commit 614b97a

35 files changed

Lines changed: 379 additions & 973 deletions

.circleci/config.yml

Lines changed: 0 additions & 311 deletions
This file was deleted.

.circleci/merge_pr.sh

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Closes #
99

1010
- [ ] Clean up commit history
1111
- [ ] Add or update documentation related to these changes
12-
- [ ] Add entry to the [release notes](https://github.com/ethereum/py-trie/blob/main/newsfragments/README.md)
12+
- [ ] Add entry to the [release notes](https://github.com/ApeWorX/py-trie/blob/main/newsfragments/README.md)
1313

1414
#### Cute Animal Picture
1515

.github/workflows/publish.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
id-token: write
12+
13+
steps:
14+
- uses: actions/checkout@v5
15+
with:
16+
fetch-depth: 0
17+
- uses: astral-sh/setup-uv@v7
18+
- name: Build Package
19+
run: uv build
20+
- name: Publish Package
21+
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)