Skip to content

Commit

Permalink
Merge f480476 into 48015c1
Browse files Browse the repository at this point in the history
  • Loading branch information
mickahell committed Jul 29, 2023
2 parents 48015c1 + f480476 commit 4b92ebb
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 36 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_latest_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.7, 3.8, 3.9, '3.10']
python-version: [3.8, 3.9, '3.10']
include:
- os: macos-latest
python-version: 3.7
python-version: 3.8
- os: windows-latest
python-version: 3.7
python-version: 3.8
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ jobs:
- os: linux
python: 3.8
env: TOXENV=py38
- os: linux
python: 3.7
env: TOXENV=py37
- os: linux
python: 3.9
env: TOXENV=lint
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
![Platform](https://img.shields.io/badge/Platform-Linux%20%7C%20macOS%20%7C%20Windows-informational)
[![Python](https://img.shields.io/badge/Python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-informational)](https://www.python.org/)
[![Python](https://img.shields.io/badge/Python-3.8%20%7C%203.9%20%7C%203.10-informational)](https://www.python.org/)
[![Qiskit](https://img.shields.io/badge/Qiskit-%E2%89%A5%200.34.2-6133BD)](https://github.com/Qiskit/qiskit)
[![License](https://img.shields.io/github/license/qiskit-community/quantum-prototype-template?label=License)](https://github.com/qiskit-community/quantum-prototype-template/blob/main/LICENSE.txt)
[![Code style: Black](https://img.shields.io/badge/Code%20style-Black-000.svg)](https://github.com/psf/black)
Expand Down
27 changes: 0 additions & 27 deletions docs/_static/custom.css

This file was deleted.

5 changes: 4 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"sphinx_autodoc_typehints",
"reno.sphinxext",
"nbsphinx",
"qiskit_sphinx_theme",
]
templates_path = ["_templates"]
numfig = True
Expand All @@ -53,8 +54,10 @@
modindex_common_prefix = ["template_project."]

# html theme options
html_static_path = ["_static"]
html_title = f"{project} {release}"
html_logo = "_static/images/logo.png"
html_theme = "qiskit-ecosystem"
html_theme_options = {"sidebar_hide_name": True}

# autodoc/autosummary options
autosummary_generate = True
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dynamic = [
"version",
]
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
description = "Repository for a quantum prototype"
authors = [
Expand Down Expand Up @@ -34,6 +34,7 @@ dev = [
"jupyter-sphinx>=0.3.2",
"nbsphinx>=0.8.8",
"sphinx-autodoc-typehints>=1.17.0",
"qiskit-sphinx-theme~=1.14.0",
"reno>=3.5.0",
# Black's formatting rules can change between major versions, so we use
# the ~= specifier for it.
Expand Down

0 comments on commit 4b92ebb

Please sign in to comment.