-
Notifications
You must be signed in to change notification settings - Fork 1
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
Python 3.11 upgrade #279
Python 3.11 upgrade #279
Changes from 4 commits
7e142b1
ece924a
4a8f051
2e99cf7
2f49bcb
829e5b0
53c8e6d
69093fa
6cc26bc
abe2140
a7fa068
669e51f
4b70bd2
927862e
702aedb
5b4c84b
4120faa
a25959b
07bbdd0
ba13cbf
7ed1511
88f3b89
3e5cf5f
e24b3e0
c760707
7b3daaf
099a32e
25a4b58
96cc528
97f1173
b226d61
45064b2
bd6a797
96a10cb
af72ea9
f7c05b5
27e11b6
2699a4d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -29,7 +29,6 @@ classifiers = [ | |||||||||
|
||||||||||
# Specify the Python versions you support here. | ||||||||||
'Programming Language :: Python :: 3', | ||||||||||
'Programming Language :: Python :: 3.7', | ||||||||||
'Programming Language :: Python :: 3.8', | ||||||||||
'Programming Language :: Python :: 3.9', | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||||||||||
] | ||||||||||
|
@@ -70,7 +69,8 @@ coverage = ">=7.2.3" | |||||||||
# coveralls = ">=3.3.1" | ||||||||||
flake8 = ">=3.9.2" | ||||||||||
flaky = ">=3.7.0" | ||||||||||
pip-licenses = "^3.5.5" | ||||||||||
pip-licenses = "^4.3.3" | ||||||||||
pip = "23.2.1" | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would order this before Is it really a good idea to list Further, do you really mean to pin it to so specific a version? If so, could you add a comment saying why so we can know when to unpin it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You're right, I had that (pip) in there temporarily - I will remove it. Thanks. |
||||||||||
pytest = ">=4.5.0" | ||||||||||
pytest-cov = ">=2.7.1" | ||||||||||
pytest-mock = ">=1.11.0" | ||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not 3.10?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to save time in GitHub actions really; not sure 3.10 is in wide usage; can add if you like.