Skip to content

Commit 6600869

Browse files
committed
Update copier project description and supported versions.
1 parent cbee10d commit 6600869

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

.copier-answers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ include_docs: true
1414
include_notebooks: true
1515
mypy_type_checking: none
1616
package_name: hats_tap
17-
project_description: TAP-compliant server for HATS data, queried using LSDB.
17+
project_description: TAP(Table Access Protocol) server prototype for HATS data, queried
18+
using LSDB.
1819
project_license: BSD
1920
project_name: hats-tap
2021
project_organization: astronomy-commons
2122
python_versions:
22-
- '3.10'
2323
- '3.11'
2424
- '3.12'
2525
- '3.13'

.github/workflows/asv-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches: [ main ]
99

1010
env:
11-
PYTHON_VERSION: "3.11"
11+
PYTHON_VERSION: "3.12"
1212
ASV_VERSION: "0.6.5"
1313
WORKING_DIR: ${{github.workspace}}/benchmarks
1414

.github/workflows/asv-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
PYTHON_VERSION: "3.11"
12+
PYTHON_VERSION: "3.12"
1313
ASV_VERSION: "0.6.5"
1414
WORKING_DIR: ${{github.workspace}}/benchmarks
1515
NIGHTLY_HASH_FILE: nightly-hash

.github/workflows/asv-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515
cancel-in-progress: true
1616

1717
env:
18-
PYTHON_VERSION: "3.11"
18+
PYTHON_VERSION: "3.12"
1919
ASV_VERSION: "0.6.5"
2020
WORKING_DIR: ${{github.workspace}}/benchmarks
2121
ARTIFACTS_DIR: ${{github.workspace}}/artifacts

.github/workflows/build-documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v6
24-
- name: Set up Python 3.11
24+
- name: Set up Python 3.12
2525
uses: actions/setup-python@v6
2626
with:
27-
python-version: '3.11'
27+
python-version: '3.12'
2828
- name: Install uv
2929
uses: astral-sh/setup-uv@v7
3030
- name: Install dependencies

.github/workflows/pre-commit-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v6
2222
with:
23-
python-version: '3.11'
23+
python-version: '3.12'
2424
- name: Install uv
2525
uses: astral-sh/setup-uv@v7
2626
- name: Install dependencies

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Python
2828
uses: actions/setup-python@v6
2929
with:
30-
python-version: '3.11'
30+
python-version: '3.12'
3131
- name: Install dependencies
3232
run: |
3333
python -m pip install --upgrade pip

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version: 2
99
build:
1010
os: ubuntu-22.04
1111
tools:
12-
python: "3.11"
12+
python: "3.12"
1313

1414
# Build documentation in the docs/ directory with Sphinx
1515
sphinx:

benchmarks/asv.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
// The Pythons you'd like to test against. If not provided, defaults
3838
// to the current version of Python used to run `asv`.
3939
"pythons": [
40-
"3.11"
40+
"3.12"
4141
],
4242
// The matrix of dependencies to test. Each key is the name of a
4343
// package (in PyPI) and the values are version numbers. An empty

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Welcome to hats_tap's documentation!
77
========================================================================================
88

9-
TAP-compliant server for HATS data, queried using LSDB.
9+
TAP(Table Access Protocol) server prototype for HATS data, queried using LSDB.
1010

1111
Dev Guide - Getting Started
1212
---------------------------
@@ -18,7 +18,7 @@ create and activate a new environment.
1818

1919
.. code-block:: console
2020
21-
>> conda create env -n <env_name> python=3.11
21+
>> conda create env -n <env_name> python=3.12
2222
>> conda activate <env_name>
2323
2424

0 commit comments

Comments
 (0)