atlassian-api / atlassian-python-api

Atlassian Python REST API wrapper
https://atlassian-python-api.readthedocs.io
Apache License 2.0
1.29k stars 642 forks source link

New release #1421

Open Neil-Welsh opened 2 weeks ago

Neil-Welsh commented 2 weeks ago

an issue was fixed a few days ago which would is blocking some of our development can you please do a release with the latest code base in? https://github.com/atlassian-api/atlassian-python-api/pull/1413

djgoku commented 2 weeks ago

Another option is installing the specific commit/branch.

python -m pip install -e 'git+https://git.repo/some_pkg.git#egg=SomePackage'          # from git
python -m pip install -e 'hg+https://hg.repo/some_pkg.git#egg=SomePackage'            # from mercurial
python -m pip install -e 'svn+svn://svn.repo/some_pkg/trunk/#egg=SomePackage'         # from svn
python -m pip install -e 'git+https://git.repo/some_pkg.git@feature#egg=SomePackage'  # from 'feature' branch
python -m pip install -e 'git+https://git.repo/some_repo.git#egg=subdir&subdirectory=subdir_path' # install a python package from a repo subdirectory

Taken from https://pip.pypa.io/en/stable/cli/pip_install/

gonchik commented 2 weeks ago

@djgoku @Neil-Welsh
deployed a new release. also, that info will be added into docs. Thanks for your helps and informings.