Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeSWang committed Jun 20, 2024
1 parent eb664c7 commit 44e5b18
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ to help explain your problem.

- Package version (e.g. 1.0.0)
- OS (e.g. Linux, macOS)
- Python version (e.g. 3.9) and environment (e.g. Conda)
- Python version (e.g. 3.10) and environment (e.g. Conda)
- C++ compiler version (e.g. GCC ``g++``, LLVM Clang++) and dependency
libraries (e.g. ``libgomp``, ``libomp``)

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/installation-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ from the installation process.

- Package version (e.g. 1.0.0)
- OS (e.g. Linux, macOS)
- Python version (e.g. 3.9) and environment (e.g. Conda)
- Python version (e.g. 3.10) and environment (e.g. Conda)
- C++ compiler version (e.g. GCC g++, LLVM clang++) and dependency
libraries (e.g. ``libgomp``, ``libomp``)

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ jobs:
env:
recipe_dir: deploy/pkg/conda_recipe
output_dir: dist/
variants: "{'python': ['3.9', '3.10', '3.11', '3.12']}"
variants: "{'python': ['3.10', '3.11', '3.12']}"
run: |
# Create output directory if non-existent.
if [[ ! -d ${output_dir} ]]; then mkdir -p ${output_dir}; fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd_xp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ jobs:
env:
recipe_dir: deploy/pkg/conda_recipe_xp
output_dir: dist_arm64/
variants: "{'python': ['3.9', '3.10', '3.11', '3.12']}"
variants: "{'python': ['3.10', '3.11', '3.12']}"
run: |
# Create output directory if non-existent.
if [[ ! -d ${output_dir} ]]; then mkdir -p ${output_dir}; fi
Expand Down
2 changes: 1 addition & 1 deletion deploy/pkg/autorel_anaconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if [[ ! -d ${DIST_DIR} ]]; then mkdir -p ${DIST_DIR}; fi
conda build purge
conda build --strict-verify --no-anaconda-upload ${RECIPE_DIR} \
--output-folder ${DIST_DIR} \
--variants "{'python': ['3.9', '3.10', '3.11', '3.12']}"
--variants "{'python': ['3.10', '3.11', '3.12']}"

# Transmute compression formats.
find ${DIST_DIR} -name "*.tar.bz2" \
Expand Down

0 comments on commit 44e5b18

Please sign in to comment.