Skip to content

Commit

Permalink
Merge pull request #22 from erin2722/docs
Browse files Browse the repository at this point in the history
Docs
  • Loading branch information
erin2722 authored Apr 4, 2023
2 parents d6bb259 + 3bcba4e commit 2a112f1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
12 changes: 12 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[bumpversion]
current_version = 0.2.0
commit = True
tag = True

[bumpversion:file:usau_scraper/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "usau-scraper"
authors = [{name = "Erin McNulty", email = "eem2188@columbia.edu"}]
description="The USAU scraper is a data collector that allows developers to easily aggregate and use team results, rosters, and schedule data from the USAU website."
readme = "README.md"
version = "0.0.1"
version = "0.2.0"
requires-python = ">=3.7"

dependencies = ["bs4", "requests", "pandas", "lxml"]
Expand Down
2 changes: 1 addition & 1 deletion usau_scraper/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from ._version import __version__
from .teamScraper import getTeamInfo, getTeamSchedule, getTeamRoster, queryTeam, setArgs, fillInBasicInfo

__all__ = ['getTeamInfo', 'getTeamSchedule', 'getTeamRoster', 'queryTeam', 'setArgs', 'fillInBasicInfo', '__version__']
__version__ = "0.2.0"
1 change: 0 additions & 1 deletion usau_scraper/_version.py

This file was deleted.

0 comments on commit 2a112f1

Please # to comment.