-
Notifications
You must be signed in to change notification settings - Fork 26
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
[devel
]→[master
] Preparation of v1.3.2
#419
Open
diegoferigo
wants to merge
12
commits into
master
Choose a base branch
from
devel
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
Enable Python 3.10 support
Extend functions that process SDF files to also accept SDF strings
Introduce support for Trivial Physics Engine
10 tasks
traversaro
approved these changes
Nov 9, 2021
Fix converting transform from idyntree to numpy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Needed for conda-forge/staged-recipes#16582.
master
intodevel
, if needed.devel
intomaster
, making sure that everything works as expected.CMakeLists.txt
.scenario.__init__.py
defines the correct specifier set for the Ignition distribution.setup.py
,setup.cfg
, andpyproject.toml
.v*.rc0
1 and make sure that is properly deployed to PyPI. This is necessary for the next step.scenario
specifier set in thesetup.cfg
of gym-ignition inmaster
(e.g.~= 1.3.1.rc
for the1.3.1
release). It makes allgym_ignition
packages compatible only withscenario
packages that share the same minor version.v*
1.sdist
andwheel
formats.scenario
specifier set in thesetup.cfg
of gym-ignition indevel
by increasing the least significant number (e.g.>= 1.3.2.dev
for the1.3.1
release, or>= 1.3.1post1.dev
for the1.3.1.post0
release). It makes nightly releases incompatible with stable versions, making sure that callingpip install --pre gym_ignition
pulls the pre-release also ofscenario
.master
intodevel
. This merge must contain the commit associated to the release tag in order to reset the automatic numbering of the pre-release packages of the nightly branch. If a post-release has to be published to fix minor errors,master
has to be merged again intodevel
.Footnotes
Note that the version without the
v
prefix must comply with PEP440 in this regexp. ↩ ↩2