We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f45de61 commit f8ef196Copy full SHA for f8ef196
.github/workflows/release-python.yml
@@ -82,8 +82,14 @@ jobs:
82
runs-on: ubuntu-latest
83
steps:
84
- uses: actions/checkout@v4
85
+ - name: Setup Python
86
+ uses: actions/setup-python@v4
87
+ with:
88
+ python-version: 3.7
89
- name: Build SDist
- run: python setup.py sdist --dist-dir=dist --formats=gztar
90
+ run: |
91
+ python -m pip install build
92
+ python -m build --sdist
93
- uses: actions/upload-artifact@v3
94
with:
95
name: "sdist"
pyproject.toml
@@ -1,9 +1,9 @@
1
[build-system]
2
-requires = ["setuptools>=62.0"]
+requires = ["setuptools>=65"]
3
build-backend = "setuptools.build_meta"
4
5
[tool.setuptools]
6
-packages = ["bsonjs"]
+packages = []
7
8
[project]
9
name = "python-bsonjs"
0 commit comments