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

Bump minimum python version to 3.9 #6167

Merged
merged 26 commits into from
Jun 29, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
13d1aad
dropped 3.7 support
skushnir123 Jun 27, 2023
09df863
Update setup.py
skushnir123 Jun 27, 2023
3f2c731
Merge branch 'master' into drop-37
skushnir123 Jun 27, 2023
e6e07d1
Merge branch 'master' into drop-37
skushnir123 Jun 27, 2023
7cd30b5
Merge branch 'master' into drop-37
skushnir123 Jun 28, 2023
078ea82
Removed 3.8 as well
skushnir123 Jun 28, 2023
5b7f497
changing some more 3.8's to 3.9's
skushnir123 Jun 28, 2023
bc0a9fe
reformat
skushnir123 Jun 28, 2023
351e48f
Update pyproject.toml
skushnir123 Jun 28, 2023
d6d0ff8
Update setup.py
skushnir123 Jun 28, 2023
8816a5d
changing notebook python versions
skushnir123 Jun 28, 2023
40b9631
Update setup.py
skushnir123 Jun 28, 2023
e570ef9
testing
skushnir123 Jun 28, 2023
c941c3c
Update packaging_test.sh
skushnir123 Jun 28, 2023
57ae7c7
Update packaging_test.sh
skushnir123 Jun 28, 2023
fc2ab78
Update packaging_test.sh
skushnir123 Jun 28, 2023
142197a
adding 311
skushnir123 Jun 28, 2023
67e0159
updating formatter
skushnir123 Jun 28, 2023
0fb46e0
Merge branch 'master' into drop-37
skushnir123 Jun 29, 2023
ed1a979
Bump Python version for CI actions to 3.9
pavoljuhas Jun 29, 2023
f902d80
Remove code specific to Python <= 3.8 only
pavoljuhas Jun 29, 2023
362d884
Drop redundant python_version checks from requirement files
pavoljuhas Jun 29, 2023
084903e
Fix required Python version in the installation doc
pavoljuhas Jun 29, 2023
c3eaedb
Clean redundant assertion
pavoljuhas Jun 29, 2023
68f9113
Skip coverage for code run in subprocess
pavoljuhas Jun 29, 2023
ba8c533
Suggest a more recent cirq for old pythons
pavoljuhas Jun 29, 2023
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
Prev Previous commit
Next Next commit
Update packaging_test.sh
  • Loading branch information
skushnir123 committed Jun 28, 2023
commit fc2ab78cc4637c95101bab83002efb41f52660c5
2 changes: 1 addition & 1 deletion dev_tools/packaging/packaging_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ trap '{ rm -rf "${tmp_dir}"; }' EXIT

# New virtual environment
echo "Working in a fresh virtualenv at ${tmp_dir}/env"
python3.9 -m venv --quiet "${tmp_dir}/env"
python3.9 -m venv "${tmp_dir}/env"

export CIRQ_PRE_RELEASE_VERSION
CIRQ_PRE_RELEASE_VERSION=$(dev_tools/packaging/generate-dev-version-id.sh)
Expand Down