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

Update 0.28.1 #2

Merged
merged 2 commits into from
May 5, 2023
Merged

Update 0.28.1 #2

merged 2 commits into from
May 5, 2023

Conversation

JeanChristopheMorinPerso

Update to 0.28.1.

Upstream diff: https://github.com/Farama-Foundation/Gymnasium/compare/v0.27.1..v0.28.1 (pyproject.toml)

conda-forge are still on 0.27.1, so no comparison for that.

@anaconda-pkg-build
Copy link

Linter check found the following problems: Traceback (most recent call last): File "/opt/conda/envs/linter/bin/conda-lint", line 11, in sys.exit(main()) ^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/run.py", line 107, in main result = linter.lint( ^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 620, in lint msgs = self.lint_file( ^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 692, in lint_file messages = self.lint_recipe( ^^^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 748, in lint_recipe res = self.check_instances[check].run(recipe, fix) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 247, in run self.check_recipe(recipe) File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/check_build_help.py", line 555, in check_recipe o = int(path.split("/")[1]) ^^^^^^^^^^^^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: 'host'

ERROR conda.cli.main_run:execute(47): conda run conda-lint /tmp/abs_a11xubs038/clone failed. (See above for error)

@JeanChristopheMorinPerso JeanChristopheMorinPerso marked this pull request as draft May 2, 2023 20:30
@anaconda-pkg-build
Copy link

Linter check found the following problems: Traceback (most recent call last): File "/opt/conda/envs/linter/bin/conda-lint", line 11, in sys.exit(main()) ^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/run.py", line 107, in main result = linter.lint( ^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 620, in lint msgs = self.lint_file( ^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 692, in lint_file messages = self.lint_recipe( ^^^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 748, in lint_recipe res = self.check_instances[check].run(recipe, fix) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 247, in run self.check_recipe(recipe) File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/check_build_help.py", line 555, in check_recipe o = int(path.split("/")[1]) ^^^^^^^^^^^^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: 'host'

ERROR conda.cli.main_run:execute(47): conda run conda-lint /tmp/abs_5c3cb7kta3/clone failed. (See above for error)

@JeanChristopheMorinPerso JeanChristopheMorinPerso marked this pull request as ready for review May 3, 2023 14:01
Copy link

@ryanskeith ryanskeith left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree with Charles and I would further investigate what I mentioned.

@@ -134,7 +131,7 @@ outputs:
run:
- python
- {{ pin_subpackage('gymnasium', exact=True) }}
- mujoco-python >=2.2.0,<2.4
- mujoco-python >=2.3.2,<2.4

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one is confusing. There is a project called mujoco-py and there is a project called mujoco. There is also https://anaconda.org/conda-forge/mujoco-python and https://anaconda.org/conda-forge/mujoco which are both from deepmind.

On PyPI, mujoco corresponds to the DeepMind project and mujoco-py corresponds to the OpenAI project.

I don't think the situation could be more confusing than that...

So unless I'm mistaken, I think >=2.3.2,<2.4 is correct because in conda-forge, mujoco-python corresponds to https://pypi.org/project/mujoco/ in PyPI.

Or am I confused even more after writing all this? This is entirely possible.

Copy link

@skupr-anaconda skupr-anaconda May 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The gymnasium-mujoco subpackage definitely requires mujoco-python made by DeepMind and we have it https://github.com/AnacondaRecipes/mujoco-feedstock/blob/main/recipe/meta.yaml.
The gymnasium-mujoco_py subpackage definitely requires
mujoco-py which isn't maintained, see Farama-Foundation/Gymnasium#112 (comment). But yes, mujoco-py in pyproject.toml is mujoco-py made by OpenAI https://github.com/openai/mujoco-py#install-and-use-mujoco-py

recipe/meta.yaml Show resolved Hide resolved
@@ -134,7 +131,7 @@ outputs:
run:
- python
- {{ pin_subpackage('gymnasium', exact=True) }}
- mujoco-python >=2.2.0,<2.4
- mujoco-python >=2.3.2,<2.4
Copy link

@skupr-anaconda skupr-anaconda May 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The gymnasium-mujoco subpackage definitely requires mujoco-python made by DeepMind and we have it https://github.com/AnacondaRecipes/mujoco-feedstock/blob/main/recipe/meta.yaml.
The gymnasium-mujoco_py subpackage definitely requires
mujoco-py which isn't maintained, see Farama-Foundation/Gymnasium#112 (comment). But yes, mujoco-py in pyproject.toml is mujoco-py made by OpenAI https://github.com/openai/mujoco-py#install-and-use-mujoco-py

@anaconda-pkg-build
Copy link

Linter check found the following problems: Traceback (most recent call last): File "/opt/conda/envs/linter/bin/conda-lint", line 11, in sys.exit(main()) ^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/run.py", line 107, in main result = linter.lint( ^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 620, in lint msgs = self.lint_file( ^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 692, in lint_file messages = self.lint_recipe( ^^^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 748, in lint_recipe res = self.check_instances[check].run(recipe, fix) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 247, in run self.check_recipe(recipe) File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/check_build_help.py", line 555, in check_recipe o = int(path.split("/")[1]) ^^^^^^^^^^^^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: 'host'

ERROR conda.cli.main_run:execute(47): conda run conda-lint /tmp/abs_c56c5ea0a_/clone failed. (See above for error)

@JeanChristopheMorinPerso JeanChristopheMorinPerso merged commit dcc58ae into main May 5, 2023
@JeanChristopheMorinPerso JeanChristopheMorinPerso deleted the PKG-1647_update_0.28.1 branch May 5, 2023 13:19
@anaconda-pkg-build
Copy link

Linter check found the following problems: Traceback (most recent call last): File "/opt/conda/envs/linter/bin/conda-lint", line 11, in sys.exit(main()) ^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/run.py", line 107, in main result = linter.lint( ^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 620, in lint msgs = self.lint_file( ^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 692, in lint_file messages = self.lint_recipe( ^^^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 748, in lint_recipe res = self.check_instances[check].run(recipe, fix) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/__init__.py", line 247, in run self.check_recipe(recipe) File "/opt/conda/envs/linter/lib/python3.11/site-packages/anaconda_linter/lint/check_build_help.py", line 555, in check_recipe o = int(path.split("/")[1]) ^^^^^^^^^^^^^^^^^^^^^^^ ValueError: invalid literal for int() with base 10: 'host'

ERROR conda.cli.main_run:execute(47): conda run conda-lint /tmp/abs_0e93to5jjz/clone failed. (See above for error)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants