Skip to content

Commit 196ee87

Browse files
authored
Switch to flit (#823)
1 parent e5164e2 commit 196ee87

File tree

8 files changed

+497
-168
lines changed

8 files changed

+497
-168
lines changed

.flake8

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[flake8]
2+
ignore = E501, W503, E402
3+
builtins = c, get_config
4+
exclude =
5+
.cache,
6+
.github,
7+
docs,
8+
setup.py
9+
enable-extensions = G
10+
extend-ignore =
11+
G001, G002, G004, G200, G201, G202,
12+
# black adds spaces around ':'
13+
E203,
14+
per-file-ignores =
15+
# B011: Do not call assert False since python -O removes these calls
16+
# F841 local variable 'foo' is assigned to but never used
17+
tests/*: B011, F841

MANIFEST.in

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

RELEASE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ To create a manual release, perform the following steps:
1414
pip install tbump twine build
1515
git pull origin $(git branch --show-current)
1616
git clean -dffx
17+
npm install
18+
npm run build
1719
```
1820

1921
### Update the version and apply the tag

0 commit comments

Comments
 (0)