Skip to content

Commit

Permalink
[Fix] PEP625 compliance
Browse files Browse the repository at this point in the history
This fix insures that future PyPI releases' filenames are PEP 625 compliant with normalized file name.
  • Loading branch information
kevin931 committed Dec 28, 2024
1 parent 82a4dc2 commit 1bf0df1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set name = "PyCytoData" %}
{% set name = "pycytodata" %}
{% set version = "0.1.3" %}

package:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def finalize_options(self):
def run(self):
shutil.rmtree("dist/")

wheel_file = "PyCytoData-{}-py3-none-any.whl".format(VERSION)
tar_file = "PyCytoData-{}.tar.gz".format(VERSION)
wheel_file = "pycytodata-{}-py3-none-any.whl".format(VERSION)
tar_file = "pycytodata-{}.tar.gz".format(VERSION)

os.system("{} setup.py sdist bdist_wheel".format(sys.executable))
os.system("twine upload dist/{} dist/{}".format(wheel_file, tar_file))
Expand Down

0 comments on commit 1bf0df1

Please sign in to comment.