We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 652cc55 commit e29221eCopy full SHA for e29221e
1 file changed
util/make-test-project
@@ -1,12 +1,15 @@
1
#!/usr/bin/env python3
2
3
+# since someone else is using the "dnspython" name on test.pypi.org, we rename
4
+# project to dnspython_test for testing purposes.
5
+
6
import os
7
-PROJECT = 'pyproject.toml'
-NEW_PROJECT = 'pyproject.toml-new'
8
+PROJECT = "pyproject.toml"
9
+NEW_PROJECT = "pyproject.toml-new"
10
-with open(PROJECT, 'rt') as f:
- with open(NEW_PROJECT, 'wt') as nf:
11
+with open(PROJECT, "rt") as f:
12
+ with open(NEW_PROJECT, "wt") as nf:
13
for l in f.readlines():
14
l = l.rstrip()
15
if l == 'name = "dnspython"':
0 commit comments