Skip to content

Commit

Permalink
PYTHON-4173 [python-bsonjs] Fix dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Jan 29, 2024
1 parent f45de61 commit 360af8d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Build SDist
run: python setup.py sdist --dist-dir=dist --formats=gztar
run: python -m build --sdist
- uses: actions/upload-artifact@v3
with:
name: "sdist"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[build-system]
requires = ["setuptools>=62.0"]
requires = ["setuptools>=65"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["bsonjs"]
packages = []

[project]
name = "python-bsonjs"
Expand Down

0 comments on commit 360af8d

Please sign in to comment.