Skip to content

Commit

Permalink
Remove pandas restrictions (#358)
Browse files Browse the repository at this point in the history
* Remove old vscode settings

* Remove the pandas restriction to 1.0

* Remove 3.7 support, add 3.12
  • Loading branch information
gordonwatts authored Apr 9, 2024
1 parent 53fb813 commit 502803f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest, macOS-latest]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.platform }}

steps:
Expand Down
7 changes: 0 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"python.analysis.logLevel": "Information",
"python.analysis.memory.keepLibraryAst": true,
"python.linting.flake8Enabled": true,
"cSpell.words": [
"accesskey",
"aenter",
Expand Down Expand Up @@ -109,13 +107,8 @@
"tests",
"-s"
],
"python.pythonPath": ".venv\\Scripts\\python.exe",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"restructuredtext.preview.docutils.disabled": true,
"python.linting.flake8Args": [
"--config=.flake8"
],
}
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@
maintainer_email="[email protected]",
url="https://github.com/ssl-hep/ServiceX_frontend",
license="TBD",
python_requires=">=3.7",
python_requires=">=3.8",
test_suite="tests",
install_requires=[
"idna==2.10", # Required to thread version needle with requests library
"pandas~=1.0",
"pandas>1.5",
"uproot>=4.0.1",
"backoff>=2.0",
"aiohttp~=3.6",
Expand Down Expand Up @@ -93,11 +93,11 @@
"Topic :: Software Development",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
package_data={
"servicex": ["config_default.yaml"],
Expand Down

0 comments on commit 502803f

Please sign in to comment.