-
Notifications
You must be signed in to change notification settings - Fork 100
Release 0.9.0 Proposal #445
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
Merged
xhochy
merged 26 commits into
conda:main
from
ryanskeith:new_release_and_setup_tooling_update
Jan 22, 2026
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
ba24955
Updating to modern Python and adding changelog.
ryanskeith 5be0840
Forgot to add pyproject.toml.
ryanskeith ae6a43b
Updating flake8 to align with black.
ryanskeith 4d12573
Adding changes that were not saved to file for the changelog.
ryanskeith 3e4cc94
Merge branch 'main' into new_release_and_setup_tooling_update
ryanskeith 9ce26cb
updating meta.yml in sample recipe.
ryanskeith 76c1f4d
Assure we have conda in the testbed.
ryanskeith 2a7aff2
Adding in TOS acceptance.
ryanskeith b8127e1
Modifying it again to see if we can get the CI working.
ryanskeith d787093
Adding default value of 0.9.0
ryanskeith bd86cd1
Leaving in packages for test to avoid warning.
ryanskeith b3fe3b8
We don't need to purge packages. This should speed things up.
ryanskeith 5b6ce07
Augmenting tests.
ryanskeith 750a2df
As MacOS tests pass, changing CONDA_PKGS_DIRS on the other two OS's t…
ryanskeith 1e58bf1
tweaking set up a little more.
ryanskeith 7653f03
Bypassing warnings for now.
ryanskeith f426b93
Missed the second assert in test.
ryanskeith 0798224
Reverting to main as the problem is in the setup.
ryanskeith f51bce6
Fixing pyproect.toml.
ryanskeith 5f30615
Trying to save the and use the testbed cache.
ryanskeith 7321e2f
Reviewer feedback edits. Moving env to workflow level and removing u…
ryanskeith 6059a6e
Small cleanup to not have to make a lint exception plus better way to…
ryanskeith dc92078
Adding in suggestion to improve the conda package version to be dynamic.
ryanskeith e249923
Update Changelog.md
ryanskeith 73b4a01
Move flake8 config to .flake8
xhochy fd1d8fe
Fix CONDA_PKGS_DIRS handling for multiple directories in setup_envs.sh
xhochy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| [flake8] | ||
| max-line-length = 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,10 @@ | ||
| from . import _version | ||
| from .core import CondaEnv, CondaPackException, File, pack | ||
| from importlib.metadata import version | ||
|
|
||
| __version__ = _version.get_versions()['version'] | ||
| __version__ = version("conda-pack") | ||
|
|
||
| from .core import CondaEnv as CondaEnv | ||
| from .core import CondaPackException as CondaPackException | ||
| from .core import File as File | ||
| from .core import pack as pack | ||
|
|
||
| __all__ = ["CondaEnv", "CondaPackException", "File", "pack"] |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.