Skip to content

Commit

Permalink
Merge pull request #2 from Decompollaborate/develop
Browse files Browse the repository at this point in the history
1.1.4
  • Loading branch information
AngheloAlf committed Apr 3, 2023
2 parents 7bf9460 + f07b663 commit b4cb88e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,22 @@

[project]
name = "mapfile_parser"
version = "1.1.3"
version = "1.1.4"
description = "Map file parser library focusing decompilation projects"
readme = "README.md"
requires-python = ">=3.7"
dynamic = ["dependencies"]

[project.urls]
"Homepage" = "https://github.com/Decompollaborate/mapfile_parser"
"Bug Tracker" = "https://github.com/Decompollaborate/mapfile_parser/issues"

[build-system]
requires = ["hatchling"]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"

[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]

[tool.cibuildwheel]
skip = ["cp36-*"]
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requests
2 changes: 1 addition & 1 deletion src/mapfile_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from __future__ import annotations

__version_info__ = (1, 1, 3)
__version_info__ = (1, 1, 4)
__version__ = ".".join(map(str, __version_info__))
__author__ = "Decompollaborate"

Expand Down

0 comments on commit b4cb88e

Please sign in to comment.