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

Extend support for Python 3.10 #240

Merged
merged 29 commits into from
Nov 2, 2022
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d734dc2
Extend support for Python 3.10
santisoler Aug 27, 2021
ad8f6ad
Set Python versions as strings on test.yml
santisoler Aug 27, 2021
4dbdc38
Replace 3.10 for 3.10-dev until the release is out
santisoler Aug 27, 2021
d83fbff
Merge branch 'master' into py3.10
santisoler Oct 9, 2021
bae712a
Replace 3.10-dev for 3.10 on Action
santisoler Oct 9, 2021
17eab59
Merge branch 'master' into py3.10
santisoler Oct 18, 2021
871b0f1
Run CIs only on the two ends of Python versions
santisoler Oct 18, 2021
222ce66
Merge branch 'master' into py3.10
santisoler Oct 19, 2021
d7fcadf
Merge branch 'master' into py3.10
santisoler Oct 27, 2021
a067d81
Merge branch 'master' into py3.10
santisoler Nov 8, 2021
9a46a83
Merge branch 'master' into py3.10
santisoler Nov 15, 2021
6de23f8
Merge branch 'master' into py3.10
santisoler Nov 15, 2021
63b6d97
Merge branch 'main' into py3.10
santisoler Dec 2, 2021
e85d86b
Merge branch 'main' into py3.10
santisoler Mar 18, 2022
aa48766
Merge branch 'main' into py3.10
santisoler Mar 18, 2022
5ad1d09
Extend support for Python 3.10 on setup.cfg and new GH actions
santisoler Mar 18, 2022
35b3dc0
Put 3.10 between quotes to make it a string and not a float
santisoler Mar 18, 2022
682ef3c
Upgrade Python to 3.10 in environment.yml
santisoler Mar 18, 2022
7c1c4d7
Upgrade Sphinx version in environment.yml
santisoler Mar 18, 2022
fa969d2
Update sphinx packages in env/requirements-docs.txt
santisoler Mar 18, 2022
336885b
Remove default channel when building environment for building docs
santisoler Mar 18, 2022
d0bfff9
Revert "Remove default channel when building environment for building…
santisoler Mar 18, 2022
5305956
Merge branch 'main' into py3.10
santisoler Apr 18, 2022
485b5b9
Merge branch 'main' into py3.10
santisoler May 3, 2022
24e4495
Merge branch 'main' into py3.10
santisoler May 20, 2022
14203d2
Merge branch 'main' into py3.10
santisoler Jul 6, 2022
b4e563f
Merge branch 'main' into py3.10
santisoler Aug 12, 2022
8f584f4
Merge branch 'main' into py3.10
santisoler Oct 25, 2022
62be2e8
Merge branch 'main' into py3.10
santisoler Nov 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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python: [3.6, 3.7, 3.8, 3.9]
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
santisoler marked this conversation as resolved.
Show resolved Hide resolved
# If "optional", will install non-required dependencies in the build
# environment. Otherwise, only required dependencies are installed.
dependencies: [""]
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: {}".format(LICENSE),
]
Expand Down