diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2019-10-27 18:17:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-27 18:17:30 -0400 |
| commit | e3068ee28f37064d08c3f55557536454be47b0cd (patch) | |
| tree | a8893ab769146f3c1948dc8517aae9067ffd95f3 /setuptools/tests | |
| parent | 230d1f74eea0dd84a022bc8cfd803256f16f3b97 (diff) | |
| parent | 43add1d3f5138e38adc4940647cc6eae94fb6123 (diff) | |
| download | external_python_setuptools-e3068ee28f37064d08c3f55557536454be47b0cd.tar.gz external_python_setuptools-e3068ee28f37064d08c3f55557536454be47b0cd.tar.bz2 external_python_setuptools-e3068ee28f37064d08c3f55557536454be47b0cd.zip | |
Merge pull request #1824 from asottile/python310
Fixes for python3.10
Diffstat (limited to 'setuptools/tests')
| -rw-r--r-- | setuptools/tests/test_bdist_egg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_bdist_egg.py b/setuptools/tests/test_bdist_egg.py index 54742aa6..fb5b90b1 100644 --- a/setuptools/tests/test_bdist_egg.py +++ b/setuptools/tests/test_bdist_egg.py @@ -42,7 +42,7 @@ class Test: # let's see if we got our egg link at the right place [content] = os.listdir('dist') - assert re.match(r'foo-0.0.0-py[23].\d.egg$', content) + assert re.match(r'foo-0.0.0-py[23].\d+.egg$', content) @pytest.mark.xfail( os.environ.get('PYTHONDONTWRITEBYTECODE'), |
