-
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.1
#411
Conversation
Fix checking supported Ignition distributions
Fix Ignition distribution check in case multiple versions are found
Support conda packaging
Enable automatic generation of release changelog
I'm not sure why the Stable channel checks targeting current
We never modify the |
After releasing The release process was updated recently and there are still some edge cases like this one that have to be properly handled. I updated the release guide with the right specifier version to use. |
master
intodevel
, if needed. db069ffdevel
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.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
.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
.Footnotes
Note that the version without the
v
prefix must comply with PEP440 in this regexp. ↩ ↩2