Skip to content

Commit

Permalink
Merge pull request #150 from American-Soccer-Analysis/dependabot/pip/…
Browse files Browse the repository at this point in the history
…pandas-2.1.0

Bump pandas from 2.0.3 to 2.1.0
  • Loading branch information
bgrnwd authored Sep 19, 2023
2 parents 97e1c09 + a2db9c5 commit 9ab2a13
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pip install itscalledsoccer
To install a development version, clone this repo and run the following command.

```sh
pip install --editable itscalledsoccer/python-package
pip install --editable .
```

## Usage
Expand Down
46 changes: 23 additions & 23 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,26 @@ authors = [
{ name = "American Soccer Analysis", email = "americansocceranalysis@gmail.com" },
]
keywords = [
"stats",
"soccer",
"api",
"football",
"american",
"machine learning"
"stats",
"soccer",
"api",
"football",
"american",
"machine learning",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
"Programming Language :: Python :: 3.11",
]
dependencies = [
"requests==2.31.0",
"CacheControl==0.13.1",
"rapidfuzz==3.2.0",
"pandas==2.0.3"
"requests~=2.31.0",
"CacheControl~=0.13.1",
"rapidfuzz~=3.2.0",
"pandas~=2.0.3",
]
version = "1.1.0"

Expand All @@ -36,27 +36,27 @@ Repository = "https://github.com/American-Soccer-Analysis/itscalledsoccer"

[project.optional-dependencies]
test = [
'types-requests==2.31.0.2',
'behave==1.2.6',
'black==23.7.0',
'mypy==1.5.1',
'isort==5.12.0'
'types-requests~=2.31.0.2',
'behave~=1.2.6',
'black~=23.7.0',
'mypy~=1.5.1',
'isort~=5.12.0',
]

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools.exclude-package-data]
itscalledsoccer = ["tests","tests.*"]
itscalledsoccer = ["tests", "tests.*"]

[[tool.mypy.overrides]]
module = [
'cachecontrol',
'cachecontrol.heuristics',
'fuzzywuzzy',
'pandas',
'setuptools',
'rapidfuxx'
'cachecontrol',
'cachecontrol.heuristics',
'fuzzywuzzy',
'pandas',
'setuptools',
'rapidfuxx',
]
ignore_missing_imports = true
18 changes: 9 additions & 9 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
requests==2.31.0
types-requests==2.31.0.2
CacheControl==0.13.1
rapidfuzz==3.2.0
behave==1.2.6
pandas==2.0.3
black==23.7.0
mypy==1.5.1
isort==5.12.0
requests~=2.31.0
types-requests~=2.31.0.1
CacheControl~=0.13.0
rapidfuzz~=3.0.0
behave~=1.2.6
pandas~=2.0.2
black~=23.3.0
mypy~=1.3.0
isort~=5.12.0
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
requests==2.31.0
CacheControl==0.13.1
rapidfuzz==3.2.0
pandas==2.0.3
requests~=2.31.0
CacheControl~=0.13.0
rapidfuzz~=3.0.0
pandas~=2.0.2

0 comments on commit 9ab2a13

Please sign in to comment.