Skip to content

Commit d24fc76

Browse files
committed
Updated dependencies
1 parent ec4d826 commit d24fc76

File tree

3 files changed

+55
-63
lines changed

3 files changed

+55
-63
lines changed

poetry.lock

Lines changed: 52 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ classifiers = [
2929

3030
[tool.poetry.dependencies]
3131
python = "^3.7"
32-
bgfx-python = "^1.0.2"
32+
bgfx-python = "^1.0.3"
3333
glfw = "^1.12.0"
3434
python-decouple = "^3.3"
3535

setup.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
URL = 'https://github.com/fbertola/Natrix'
1212
AUTHOR = 'Federico Bertola'
1313
REQUIRES_PYTHON = '>=3.6.0'
14-
VERSION = None
14+
VERSION = "1.0.1"
1515

1616
REQUIRED = [
1717
"bgfx-python",
@@ -27,17 +27,9 @@
2727
except FileNotFoundError:
2828
long_description = DESCRIPTION
2929

30-
about = {}
31-
if not VERSION:
32-
project_slug = NAME.lower().replace("-", "_").replace(" ", "_")
33-
with open(os.path.join(here, project_slug, '__version__.py')) as f:
34-
exec(f.read(), about)
35-
else:
36-
about['__version__'] = VERSION
37-
3830
setup(
3931
name=NAME,
40-
version=about['__version__'],
32+
version=VERSION,
4133
description=DESCRIPTION,
4234
long_description=long_description,
4335
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)