Skip to content

Commit

Permalink
Update .github/pyproject_version.py
Browse files Browse the repository at this point in the history
Co-authored-by: Benoit Courty <6603048+benoit-cty@users.noreply.github.com>
  • Loading branch information
benjello and benoit-cty authored Nov 26, 2024
1 parent 111d724 commit eb2ff4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/pyproject_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_versions():
else:
raise Exception('Package version not found in pyproject.toml')
# Extract dependencies
version = re.search(r'openfisca-core\[web-api\]\s*(>=\s*[\d\.]*,\s*<\d*)"', content, re.MULTILINE)
version = re.search(r'openfisca-core\s*(>=\s*[\d\.]*,\s*<\d*)"', content, re.MULTILINE)
if version:
openfisca_core_api = version.group(1)
version = re.search(r'numpy\s*(>=\s*[\d\.]*,\s*<\d*)"', content, re.MULTILINE)
Expand Down

0 comments on commit eb2ff4b

Please sign in to comment.