Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixing install #272

Merged
merged 1 commit into from
Jul 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion awpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Provides data parsing, analytics and visualization capabilities for CSGO data."""
from awpy.parser import DemoParser

__version__ = "1.3.0"
__version__ = "1.3.1"
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# The short X.Y version
version = ""
# The full version, including alpha/beta/rc tags
release = "1.3.0"
release = "1.3.1"


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ dynamic = ["version"]
[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
where = ["awpy"]

[tool.setuptools.package-data]
"*" = [
"*.go",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="awpy",
version="1.3.0",
version="1.3.1",
packages=find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
Expand Down
Loading