-
Notifications
You must be signed in to change notification settings - Fork 24
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
Update developer environment for newer Python versions #67
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[project] | ||
name = "pymacaroons" | ||
version = "0.13.0" | ||
description = "Macaroon library for Python" | ||
authors = [ | ||
{name = "Evan Cordell", email = "[email protected]"}, | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"six>=1.8.0", | ||
"PyNaCl>=1.1.2,<2.0" | ||
] | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Topic :: Security :: Cryptography", | ||
"Topic :: Security", | ||
] | ||
[project.urls] | ||
Documentation = "http://pymacaroons.readthedocs.org/" | ||
Repository = "https://github.com/ecordell/pymacaroons" | ||
Issues = "https://github.com/ecordell/pymacaroons/issues" | ||
|
||
[tool.distutils.bdist_wheel] | ||
universal = true |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py27, py35, py36, py37, py38, py39, pypy3, flake8, docs | ||
envlist = py38, py39, py310, py311, py312, py313, pypy3, flake8, docs | ||
skip_missing_interpreters=True | ||
|
||
[testenv] | ||
|
@@ -27,10 +27,10 @@ commands= | |
|
||
[gh-actions] | ||
python = | ||
2.7: py27 | ||
3.5: py35 | ||
3.6: py36 | ||
3.7: py37 | ||
3.8: py38 | ||
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. 3.8 is now EOL as well: https://devguide.python.org/versions/ 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 love to see Python 3.8 kept at least for one release to ease migration path for us from 3.8 to 3.12. Thanks for considering! |
||
3.9: py39 | ||
3.10: py310 | ||
3.11: py311 | ||
3.12: py312 | ||
3.13: py313 | ||
pypy3: pypy3 |
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.
+1, good to move to the officially supported https://pypi.org/project/tox-gh/