From 6343f28ec14b22eab56ed2e68b6663ba0b18c045 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sun, 2 Aug 2020 17:21:23 -0700 Subject: [PATCH] Fix allow_failures (3.9-dev, not 3.9) and fix Windows find-and-replace command to allow 3.9 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 09697d4c..3628fe8a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -62,7 +62,7 @@ aliases: jobs: fast_finish: true allow_failures: - - python: 3.9 + - python: 3.9-dev - python: nightly include: @@ -121,7 +121,7 @@ jobs: - <<: *test_windows name: Python 3.9 on Windows before_install: - - powershell -Command "(gc pyproject.toml) -replace 'python = "">=3.7.0, <3.9.0""', 'python = "">=3.7.0, <3.10.0""' | Out-File -encoding UTF8 pyproject.toml" + - powershell -Command "(gc pyproject.toml) -replace 'python = "">=3.7.0, <3.9.0""', 'python = "">=3.7.0, <3.10.0""' -join \"`n\" | Out-File -encoding UTF8 pyproject.toml" python: 3.9-dev env: <<: *env_windows