Skip to content

Commit

Permalink
Merge pull request #195 from AurelienJaquier/pyproject
Browse files Browse the repository at this point in the history
start using pyproject.toml
  • Loading branch information
AurelienJaquier authored Oct 28, 2024
2 parents 88f089a + d69a91d commit bf892a7
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 3,045 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:

- name: Build a source tarball and wheel
run: |
pip install wheel
python setup.py sdist bdist_wheel
pip install build
python -m build
- name: Get and store tag from 'Bump version and push tag' step
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
Expand Down
8 changes: 0 additions & 8 deletions bluepyefe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,3 @@
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""

from ._version import get_versions

__version__ = get_versions()["version"]
del get_versions

from . import _version
__version__ = _version.get_versions()['version']
Loading

0 comments on commit bf892a7

Please sign in to comment.