Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

795 conda env python3 10 #807

Merged
merged 20 commits into from
Aug 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
6ce1d62
Callable from collections is depreicated for python 3.10 so need to u…
priti-ashvin-shah-ibm May 25, 2022
9074d20
Add new tag for pyepr.
priti-ashvin-shah-ibm May 25, 2022
37a5fb4
Update tags for new Metal pypi release.
priti-ashvin-shah-ibm May 25, 2022
485d67c
Wait until Samarth s pull request is merged.
priti-ashvin-shah-ibm May 26, 2022
deeea88
To make run_all_tests to pass. @Gyeonghun had the fix.
priti-ashvin-shah-ibm May 26, 2022
f561515
Use later tag.
priti-ashvin-shah-ibm May 27, 2022
436a88f
Merge branch 'main' into 795_conda_env__python3_10
priti-ashvin-shah-ibm Jun 23, 2022
d455de6
Python 310 ci (#806)
GyeonghunKim Jul 8, 2022
8518613
Merge branch 'main' into 795_conda_env__python3_10
priti-ashvin-shah-ibm Jul 8, 2022
f2f938f
Merge branch 'main' into 795_conda_env__python3_10
priti-ashvin-shah-ibm Jul 21, 2022
95c7a08
Merge branch 'main' into 795_conda_env__python3_10
priti-ashvin-shah-ibm Jul 25, 2022
aa49f82
Merge branch 'main' into 795_conda_env__python3_10
priti-ashvin-shah-ibm Jul 25, 2022
84e0590
Merge branch 'main' into 795_conda_env__python3_10
priti-ashvin-shah-ibm Jul 28, 2022
f414d20
Merge branch 'main' into 795_conda_env__python3_10
priti-ashvin-shah-ibm Aug 2, 2022
b5d26af
Removing the outdated python version.
priti-ashvin-shah-ibm Aug 2, 2022
8dbf202
Test if sphinx is working now while we are doing a small pull request.
priti-ashvin-shah-ibm Aug 2, 2022
6b923be
We want to use python 3.8 or higher.
priti-ashvin-shah-ibm Aug 2, 2022
d34124e
We want to use python 3.9 or higher.
priti-ashvin-shah-ibm Aug 2, 2022
3ead228
Use only python39 and python310
priti-ashvin-shah-ibm Aug 2, 2022
38f4286
Just in case for future.
priti-ashvin-shah-ibm Aug 2, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# Set matrix for runs-on
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.9", "3.10"]
os: ["macOS-latest", "ubuntu-latest"]
steps:
- name: Chekout code
Expand All @@ -41,7 +41,7 @@ jobs:
# runs-on: windows-latest
# strategy:
# matrix:
# python-version: [3.7, 3.8, 3.9]
# python-version: ["3.9", "3.10"]
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release Artifacts
on:
push:
tags:
- '*'
- "*"
jobs:
wheel-build:
name: Build and Publish Release Artifacts
Expand All @@ -12,7 +12,7 @@ jobs:
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.7'
python-version: "3.9"
- name: Install Deps
run: pip install -U twine wheel
- name: Build Artifacts
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: qiskit-metal
channels:
- conda-forge
dependencies:
- python>=3.7
- python>=3.9
- addict
- descartes
- gdspy>=1.5.2
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pylint
yapf

# Doc Build
sphinx==5.0.2
sphinx
numpydoc
sphinx-automodapi
jupyter_sphinx
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,14 @@
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
],
keywords="qiskit sdk quantum eda",
packages=find_packages(),
package_data={"": ["*.ui", "*.qrc", "_imgs/*.png", "_imgs/*.txt"]},
python_requires=">=3.7",
python_requires=">=3.9",
install_requires=requirements,
project_urls={
"Bug Tracker": "https://github.com/Qiskit/qiskit-metal/issues",
Expand Down