Skip to content

Commit

Permalink
Last element of cleanup for ABI3?
Browse files Browse the repository at this point in the history
  • Loading branch information
James-E-A committed Jan 30, 2024
1 parent d0a2dc7 commit a31e034
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pypqc"
version = "0.0.6.2a0-dev5"
version = "0.0.6.2a0-dev6"
description = "Python bindings for the \"PQClean\" post-quantum cryptography library."
readme = "README.rst"
urls = {"Homepage" = "https://github.com/JamesTheAwesomeDude/pypqc"}
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def finalize_options(self):

def get_tag(self):
python, abi, plat = _bdist_wheel.get_tag(self)
#if self.py_limited_api and platform.python_implementation() not in ABI3_EXCLUDE_IMPLEMENTATIONS:
# python = f'cp{sys.version_info.major}' if platform.python_implementation() == 'CPython' else f'py{sys.version_info.major}'
# abi = f'abi{sys.version_info.major}'
if self.py_limited_api and platform.python_implementation() not in ABI3_EXCLUDE_IMPLEMENTATIONS:
python = f'cp{sys.version_info.major}' if platform.python_implementation() == 'CPython' else f'py{sys.version_info.major}'
abi = f'abi{sys.version_info.major}'
return python, abi, plat


Expand Down

0 comments on commit a31e034

Please sign in to comment.