Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrillemidingoyi committed Jan 27, 2025
1 parent 300b820 commit a9f408e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ requirements:
- cython ==0.29.21
- xmlformatter
- path
- numpy ==1.16.6
{% if PY_VER.startswith("3.7") %}
- numpy ==1.16.6 # For Python 3.7
{% elif PY_VER.startswith("3.8") %}
- numpy ==1.16.6 # For Python 3.8
{% elif PY_VER.startswith("3.9") %}
- numpy ==2.0.2 # For Python 3.9
{% endif %}
- pyyaml
- six
- networkx
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description=short_descr,
long_description=readme + '\n\n' + history,
author="Cyrille Ahmed Midingoyi",
author_email="cyrille[email protected]",
author_email="cyrille_ahmed[email protected]",
url=url,
license='MIT',
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion src/pycropml/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
MINOR = 3
"""(int) Version minor component."""

POST = 1
POST = 2
"""(int) Version post or bugfix component."""

__version__ = ".".join([str(s) for s in (MAJOR, MINOR, POST)])
Expand Down

0 comments on commit a9f408e

Please sign in to comment.