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 org from jsirois to pex-tool. #5

Merged
merged 1 commit into from
Feb 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
org-check:
name: Check GitHub Organization
if: github.repository_owner == 'jsirois'
if: github.repository_owner == 'pex-tool'
runs-on: ubuntu-22.04
steps:
- name: Noop
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
org-check:
name: Check GitHub Organization
if: ${{ github.repository_owner == 'jsirois' }}
if: ${{ github.repository_owner == 'pex-tool' }}
runs-on: ubuntu-22.04
steps:
- name: Noop
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.. image:: https://github.com/jsirois/p537/workflows/CI/badge.svg?branch=master
:target: https://github.com/jsirois/p537/actions?query=branch%3Amaster+workflow%3ACI
.. image:: https://github.com/pex-tool/p537/workflows/CI/badge.svg?branch=master
:target: https://github.com/pex-tool/p537/actions?query=branch%3Amaster+workflow%3ACI
.. image:: https://img.shields.io/pypi/l/p537.svg
:target: https://pypi.org/project/p537/
.. image:: https://img.shields.io/pypi/v/p537.svg
Expand Down
10 changes: 5 additions & 5 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@
### Version Bump

Bump the version in [`setup.py`](setup.py) and then open a PR with ths change and land it on
https://github.com/jsirois/p537 master.
https://github.com/pex-tool/p537 master.

## Release

### Push Release Tag

Sync a local branch with https://github.com/jsirois/p537 master and confirm it has the version bump
Sync a local branch with https://github.com/pex-tool/p537 master and confirm it has the version bump
and changelog update as the tip commit.

Tag the release as `v<version>` and push the tag to https://github.com/jsirois/p537 master:
Tag the release as `v<version>` and push the tag to https://github.com/pex-tool/p537 master:
```
$ git tag --sign -am 'Release 1.0.6' v1.0.6
$ git push --tags https://github.com/jsirois/p537 HEAD:master
$ git push --tags https://github.com/pex-tool/p537 HEAD:master
```

The release to PyPI is automated from there. You can check on the release action
[here](https://github.com/jsirois/p537/actions?query=workflow%3ARelease).
[here](https://github.com/pex-tool/p537/actions?query=workflow%3ARelease).


2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def long_description():
description='A tiny platform-specific distribution with a console script.',
long_description=long_description(),
long_description_content_type="text/x-rst",
url='https://github.com/jsirois/p537',
url='https://github.com/pex-tool/p537',
license='Apache License, Version 2.0',
classifiers=[
'Intended Audience :: Developers',
Expand Down
Loading