Skip to content

Commit 502803f

Browse files
authored
Remove pandas restrictions (#358)
* Remove old vscode settings * Remove the pandas restriction to 1.0 * Remove 3.7 support, add 3.12
1 parent 53fb813 commit 502803f

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
matrix:
4242
platform: [ubuntu-latest, windows-latest, macOS-latest]
43-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
43+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
4444
runs-on: ${{ matrix.platform }}
4545

4646
steps:

.vscode/settings.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
22
"python.analysis.logLevel": "Information",
3-
"python.analysis.memory.keepLibraryAst": true,
4-
"python.linting.flake8Enabled": true,
53
"cSpell.words": [
64
"accesskey",
75
"aenter",
@@ -109,13 +107,8 @@
109107
"tests",
110108
"-s"
111109
],
112-
"python.pythonPath": ".venv\\Scripts\\python.exe",
113110
"python.testing.unittestEnabled": false,
114111
"python.testing.pytestEnabled": true,
115112
"editor.formatOnSave": true,
116-
"python.formatting.provider": "black",
117113
"restructuredtext.preview.docutils.disabled": true,
118-
"python.linting.flake8Args": [
119-
"--config=.flake8"
120-
],
121114
}

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@
4747
maintainer_email="gwatts@uw.edu",
4848
url="https://github.com/ssl-hep/ServiceX_frontend",
4949
license="TBD",
50-
python_requires=">=3.7",
50+
python_requires=">=3.8",
5151
test_suite="tests",
5252
install_requires=[
5353
"idna==2.10", # Required to thread version needle with requests library
54-
"pandas~=1.0",
54+
"pandas>1.5",
5555
"uproot>=4.0.1",
5656
"backoff>=2.0",
5757
"aiohttp~=3.6",
@@ -93,11 +93,11 @@
9393
"Topic :: Software Development",
9494
"Topic :: Utilities",
9595
"Programming Language :: Python",
96-
"Programming Language :: Python :: 3.7",
9796
"Programming Language :: Python :: 3.8",
9897
"Programming Language :: Python :: 3.9",
9998
"Programming Language :: Python :: 3.10",
10099
"Programming Language :: Python :: 3.11",
100+
"Programming Language :: Python :: 3.12",
101101
],
102102
package_data={
103103
"servicex": ["config_default.yaml"],

0 commit comments

Comments
 (0)