-
Notifications
You must be signed in to change notification settings - Fork 10
Update Python support #384
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
Changes from 8 commits
6cc19d4
20ba7b9
8a76833
117f695
942f96e
b97745e
be1b66b
eaa7870
b53fadf
5439c10
c028292
884e994
2caba4e
cc37237
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -19,21 +19,24 @@ jobs: | |||||
| - name: Checkout Code Repository | ||||||
| uses: actions/checkout@v3 | ||||||
|
|
||||||
| - name: Set up Python 3.9 | ||||||
| - name: Set up Python 3.11 | ||||||
| uses: actions/setup-python@v4 | ||||||
| with: | ||||||
| python-version: 3.9 | ||||||
| python-version: 3.11 | ||||||
|
||||||
| python-version: 3.11 | |
| python-version: 3.13 |
Outdated
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.
| python-version: [3.11, 3.12] | |
| python-version: [3.11, 3.12, 3.13] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,13 @@ | ||
| name: zstash_dev | ||
| channels: | ||
| - conda-forge | ||
| - defaults | ||
| - nodefaults # This replaces 'defaults' to avoid Anaconda commercial repos | ||
|
||
| dependencies: | ||
| # Base | ||
| # ================= | ||
| - pip=22.2.2 | ||
| - python=3.9.13 | ||
| - python >=3.11,<3.14 | ||
| - sqlite | ||
|
Collaborator
Author
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. @tomvothecoder How do we determine the constraints (
Collaborator
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. This is based on the conda-forge recipe and compatibility with other packages. If things break with new package versions, that suggests updating the constraints accordingly. |
||
| - six=1.16.0 | ||
| - globus-sdk=3.15.0 | ||
| # Developer Tools | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,7 +46,7 @@ exclude = | |
| venv | ||
|
|
||
| [mypy] | ||
| python_version = 3.9 | ||
| python_version = 3.13 | ||
|
Collaborator
Author
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. How do we choose the specific version for this?
Collaborator
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. Latest stable version of Python. |
||
| check_untyped_defs = True | ||
| ignore_missing_imports = True | ||
| warn_unused_ignores = True | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,6 @@ | |
| author_email="[email protected], [email protected], [email protected]", | ||
| description="Long term HPSS archiving software for E3SM", | ||
| packages=find_packages(include=["zstash", "zstash.*"]), | ||
| python_requires=">=3.9", | ||
| python_requires=">=3.11,<3.14", | ||
| entry_points={"console_scripts": ["zstash=zstash.main:main"]}, | ||
| ) | ||
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.