Skip to content
Open
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
3 changes: 2 additions & 1 deletion .github/workflows/build-test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:

- name: Install dependencies
run: |
python3 -m pip install build
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
Expand All @@ -40,7 +41,7 @@ jobs:
working-directory: xero-python

- name: Build package
run: python setup.py sdist
run: python3 -m build
working-directory: xero-python

- name: Set up Node environment
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:

- name: Install dependencies
run: |
python3 -m pip install build
python -m venv venv
source venv/bin/activate
pip install --upgrade pip
Expand All @@ -43,7 +44,7 @@ jobs:
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Build Package
run: python setup.py sdist
run: python3 -m build
working-directory: xero-python

- name: Publish to PyPi
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
python-dateutil>=2.7
urllib3
certifi
setuptools>=75.1.0