From 087237cac4915b85087562fc63a24acfddf3d1af Mon Sep 17 00:00:00 2001 From: Zach Burnett Date: Thu, 26 Jan 2023 08:16:03 -0500 Subject: [PATCH 1/3] specify `main` branch --- asv.conf.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/asv.conf.json b/asv.conf.json index 77c95a62e3..f1fa3c117e 100644 --- a/asv.conf.json +++ b/asv.conf.json @@ -28,6 +28,8 @@ "repo": "https://github.com/astropy/astropy.git", //"repo": "/your/local/repository/", + "branches": ["main"], + "project": "astropy", "project_url": "http://www.astropy.org/", From 18f6b313725b2d40bffcc32e3d1685e4bca1056f Mon Sep 17 00:00:00 2001 From: Zach Burnett Date: Thu, 26 Jan 2023 14:09:16 -0500 Subject: [PATCH 2/3] reorder and format --- asv.conf.json | 71 +++++++++++++++++++++++---------------------------- 1 file changed, 32 insertions(+), 39 deletions(-) diff --git a/asv.conf.json b/asv.conf.json index f1fa3c117e..7bb9c90ef0 100644 --- a/asv.conf.json +++ b/asv.conf.json @@ -1,41 +1,34 @@ { - // The versions of Python to test against - "pythons": ["3.7"], - - "environment_type": "conda", - - "conda_channels": ["conda-forge", "defaults"], - - // The matrix of dependencies to test. Each key is the name of a - // package (in PyPI) and the values are version numbers. An empty - // list indicates to just test against the default (latest) - // version. - "matrix": { - "extension-helpers": [], - "numpy": ["1.17"], - "Cython": [], - "jinja2": [], - "nomkl": [], - "scipy": ["1.3"], - "matplotlib": ["3.1"], - "pyyaml": [] - }, - - "dcvs": "git", - - // The git URL to the project being tested. Comment the first line - // and uncomment and edit the second if you are testing local changes. - "repo": "https://github.com/astropy/astropy.git", - //"repo": "/your/local/repository/", - - "branches": ["main"], - - "project": "astropy", - - "project_url": "http://www.astropy.org/", - - "show_commit_url": "http://github.com/astropy/astropy/commit/", - - "version": 1 - + "version": 1, + "project": "astropy", + "project_url": "http://www.astropy.org/", + "repo": "https://github.com/astropy/astropy.git", + "branches": [ + "main" + ], + "show_commit_url": "http://github.com/astropy/astropy/commit/", + "pythons": [ + "3.7" + ], + "conda_channels": [ + "conda-forge", + "defaults" + ], + "environment_type": "conda", + "matrix": { + "extension-helpers": [], + "numpy": [ + "1.17" + ], + "Cython": [], + "jinja2": [], + "nomkl": [], + "scipy": [ + "1.3" + ], + "matplotlib": [ + "3.1" + ], + "pyyaml": [] + } } From e7d4ac9e2e82346ebb4244f90d3a4ea5b76b9002 Mon Sep 17 00:00:00 2001 From: Zach Burnett Date: Thu, 26 Jan 2023 14:37:38 -0500 Subject: [PATCH 3/3] update config --- asv.conf.json | 37 ++++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/asv.conf.json b/asv.conf.json index 7bb9c90ef0..9821902192 100644 --- a/asv.conf.json +++ b/asv.conf.json @@ -8,27 +8,30 @@ ], "show_commit_url": "http://github.com/astropy/astropy/commit/", "pythons": [ - "3.7" + "3.8" ], "conda_channels": [ "conda-forge", "defaults" ], - "environment_type": "conda", "matrix": { - "extension-helpers": [], - "numpy": [ - "1.17" - ], - "Cython": [], - "jinja2": [], - "nomkl": [], - "scipy": [ - "1.3" - ], - "matplotlib": [ - "3.1" - ], - "pyyaml": [] - } + "req": { + "extension-helpers": [], + "numpy": [ + "1.17" + ], + "Cython": [], + "jinja2": [], + "nomkl": [], + "scipy": [ + "1.3" + ], + "matplotlib": [ + "3.1" + ], + "pyyaml": [] + } + }, + "environment_type": "conda", + "hash_length": 8 }